天蓝色。如何使用 ARM 模板从托管映像部署 VM
Azure. How to deploy VM from managed image with ARM Template
我有 VM 的托管映像,如所述here. 我需要使用托管磁盘作为 OS 磁盘从该映像部署一些 VM。我如何使用 ARM 模板做到这一点?
只需使用常规的 VM arm 模板并将 storageProfile
替换为:
"storageProfile": {
"imageReference": {
"id": "[resourceId('Microsoft.Compute/images', 'imageName')]"
},
"osDisk": {
"createOption": "FromImage"
}
},
我有 VM 的托管映像,如所述here. 我需要使用托管磁盘作为 OS 磁盘从该映像部署一些 VM。我如何使用 ARM 模板做到这一点?
只需使用常规的 VM arm 模板并将 storageProfile
替换为:
"storageProfile": {
"imageReference": {
"id": "[resourceId('Microsoft.Compute/images', 'imageName')]"
},
"osDisk": {
"createOption": "FromImage"
}
},