VHD を使用して Auto Scale を作成しようとしていますが、これが私のテンプレートです。
...
{
"type": "Microsoft.Compute/virtualMachineScaleSets",
"sku": {
"name": "[parameters('vmSize')]",
"tier": "Standard",
"capacity": "[parameters('instanceCount')]"
},
"name": "[variables('namingInfix')]",
"apiVersion": "2016-03-30",
"location": "[variables('location')]",
"tags": {
"displayName": "VMScaleSet"
},
"properties": {
"overprovision": "true",
"upgradePolicy": {
"mode": "Manual"
},
"virtualMachineProfile": {
"storageProfile": {
"osDisk": {
"name": "vmname",
"osType": "Linux",
"caching": "ReadWrite",
"vhd": {
"uri": "https://myvhd.vhd"
},
"createOption": "Attach"
}
},
"osProfile": {
"computerNamePrefix": "[parameters('vmSSName')]",
"adminUsername": "[parameters('adminUsername')]",
"adminPassword": "[parameters('adminPassword')]"
},
"networkProfile": {
}
}
}
}
...
残念ながら、私が渡したときにこのエラーを受け取りましたosProfile
:
Parameter 'osProfile' is not allowed. (Code: InvalidParameter)
しかし、osProfile
私がこのエラーを受け取りました:
Required parameter 'osProfile' is missing (null). (Code: InvalidParameter)