Skip to content

Commit 3b12ec1

Browse files
author
Ajay Kundnani
committed
Replaced reference of migrate with upgrade
1 parent 23581bc commit 3b12ec1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/virtual-machines/trusted-launch-existing-vm.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -194,10 +194,10 @@ This section steps through using an ARM template to enable Trusted launch on exi
194194
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
195195
"contentVersion": "1.0.0.0",
196196
"parameters": {
197-
"vmsToMigrate": {
197+
"vmsToUpgrade": {
198198
"type": "object",
199199
"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."
201201
}
202202
},
203203
"vTpmEnabled": {
@@ -212,20 +212,20 @@ This section steps through using an ARM template to enable Trusted launch on exi
212212
{
213213
"type": "Microsoft.Compute/virtualMachines",
214214
"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]",
217217
"properties": {
218218
"securityProfile": {
219219
"uefiSettings": {
220-
"secureBootEnabled": "[parameters('vmsToMigrate').virtualMachines[copyIndex()].secureBootEnabled]",
220+
"secureBootEnabled": "[parameters('vmsToUpgrade').virtualMachines[copyIndex()].secureBootEnabled]",
221221
"vTpmEnabled": "[parameters('vTpmEnabled')]"
222222
},
223223
"securityType": "TrustedLaunch"
224224
}
225225
},
226226
"copy": {
227227
"name": "vmCopy",
228-
"count": "[length(parameters('vmsToMigrate').virtualMachines)]"
228+
"count": "[length(parameters('vmsToUpgrade').virtualMachines)]"
229229
}
230230
}
231231
]
@@ -239,7 +239,7 @@ This section steps through using an ARM template to enable Trusted launch on exi
239239
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
240240
"contentVersion": "1.0.0.0",
241241
"parameters": {
242-
"vmsToMigrate": {
242+
"vmsToUpgrade": {
243243
"value": {
244244
"virtualMachines": [
245245
{

0 commit comments

Comments
 (0)