@@ -194,10 +194,10 @@ This section steps through using an ARM template to enable Trusted launch on exi
194
194
"$schema" : " https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#" ,
195
195
"contentVersion" : " 1.0.0.0" ,
196
196
"parameters" : {
197
- "vmsToMigrate " : {
197
+ "vmsToUpgrade " : {
198
198
"type" : " object" ,
199
199
"metadata" : {
200
- "description" : " Specifies the list of Gen2 virtual machines to be migrated to Trusted launch."
200
+ "description" : " Specifies the list of Gen2 virtual machines to be upgraded to Trusted launch."
201
201
}
202
202
},
203
203
"vTpmEnabled" : {
@@ -212,20 +212,20 @@ This section steps through using an ARM template to enable Trusted launch on exi
212
212
{
213
213
"type" : " Microsoft.Compute/virtualMachines" ,
214
214
"apiVersion" : " 2022-11-01" ,
215
- "name" : " [parameters('vmsToMigrate ').virtualMachines[copyIndex()].vmName]" ,
216
- "location" : " [parameters('vmsToMigrate ').virtualMachines[copyIndex()].location]" ,
215
+ "name" : " [parameters('vmsToUpgrade ').virtualMachines[copyIndex()].vmName]" ,
216
+ "location" : " [parameters('vmsToUpgrade ').virtualMachines[copyIndex()].location]" ,
217
217
"properties" : {
218
218
"securityProfile" : {
219
219
"uefiSettings" : {
220
- "secureBootEnabled" : " [parameters('vmsToMigrate ').virtualMachines[copyIndex()].secureBootEnabled]" ,
220
+ "secureBootEnabled" : " [parameters('vmsToUpgrade ').virtualMachines[copyIndex()].secureBootEnabled]" ,
221
221
"vTpmEnabled" : " [parameters('vTpmEnabled')]"
222
222
},
223
223
"securityType" : " TrustedLaunch"
224
224
}
225
225
},
226
226
"copy" : {
227
227
"name" : " vmCopy" ,
228
- "count" : " [length(parameters('vmsToMigrate ').virtualMachines)]"
228
+ "count" : " [length(parameters('vmsToUpgrade ').virtualMachines)]"
229
229
}
230
230
}
231
231
]
@@ -239,7 +239,7 @@ This section steps through using an ARM template to enable Trusted launch on exi
239
239
"$schema" : " https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#" ,
240
240
"contentVersion" : " 1.0.0.0" ,
241
241
"parameters" : {
242
- "vmsToMigrate " : {
242
+ "vmsToUpgrade " : {
243
243
"value" : {
244
244
"virtualMachines" : [
245
245
{
0 commit comments