我有一个VM的托管映像,如上所述here. 我需要从托管磁盘作为操作系统磁盘部署该映像中的一些虚拟机。我怎么能用ARM模板做到这一点?
答案 0 :(得分:3)
只需使用常规VM arm模板并将storageProfile
替换为:
"storageProfile": {
"imageReference": {
"id": "[resourceId('Microsoft.Compute/images', 'imageName')]"
},
"osDisk": {
"createOption": "FromImage"
}
},