- Hands-On Cloud Solutions with Azure
- Greg Leonardo
- 98字
- 2021-06-10 19:44:41
azuredeploy.parameters.json
This file contains the parameters for the template and is called from within the preceding PowerShell script. These parameters will overwrite the parameters in the Template file. You can use multiple parameter files to deploy to different environments; I usually also create a different PowerShell file as well by environment so I do not need modify it. I add the parameters for username and password, as well as the private Subnet definition:
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"adminUsername": {
"value": "azureuser"
},
"adminPassword": {
"value": "Azure12345678"
},
"PrivateSubnet": {
"value": "10.0.1.0/24"
}
}
}
推薦閱讀
- Microsoft Dynamics CRM Customization Essentials
- 智能傳感器技術與應用
- Deep Learning Quick Reference
- PyTorch深度學習實戰
- 人工智能工程化:應用落地與中臺構建
- Expert AWS Development
- 傳感器技術應用
- Creo Parametric 1.0中文版從入門到精通
- Kubernetes for Developers
- 基于單片機的嵌入式工程開發詳解
- Machine Learning with the Elastic Stack
- Citrix? XenDesktop? 7 Cookbook
- 嵌入式GUI開發設計
- Hands-On DevOps
- Windows 7故障與技巧200例