- 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"
}
}
}
推薦閱讀
- 繪制進(jìn)程圖:可視化D++語言(第1冊)
- 影視后期制作(Avid Media Composer 5.0)
- Julia 1.0 Programming
- Visual C# 2008開發(fā)技術(shù)實(shí)例詳解
- 完全掌握AutoCAD 2008中文版:綜合篇
- 計(jì)算機(jī)網(wǎng)絡(luò)技術(shù)基礎(chǔ)
- 基于ARM 32位高速嵌入式微控制器
- Learning Azure Cosmos DB
- PVCBOT機(jī)器人控制技術(shù)入門
- Practical Big Data Analytics
- Salesforce Advanced Administrator Certification Guide
- INSTANT Adobe Story Starter
- 手把手教你學(xué)Flash CS3
- Hands-On Deep Learning with Go
- 從零開始學(xué)ASP.NET