@@ -228,15 +228,15 @@ To replicate VMs running in an Azure Extended Zone to an Azure region, follow th
228
228
229
229
```
230
230
$CacheStorageAccount = New-AzStorageAccount -Name "cachestorage" -ResourceGroupName
231
- "<primary ResourceGroupName>" -Location '<EdgeZoneRegion >' -SkuName Standard_LRS -
231
+ "<primary ResourceGroupName>" -Location '<AzureRegion >' -SkuName Standard_LRS -
232
232
Kind Storage
233
233
```
234
234
235
235
1. Ensure to create a virtual network in the target location. Create a Recovery Network in the recovery region.
236
236
237
237
```
238
238
$recoveryVnet = New-AzVirtualNetwork -Name "recoveryvnet" -ResourceGroupName
239
- "recoveryrg" -Location '<EdgeZoneRegion >' -AddressPrefix "10.0.0.0/16"
239
+ "recoveryrg" -Location '<AzureRegion >' -AddressPrefix "10.0.0.0/16"
240
240
Add-AzVirtualNetworkSubnetConfig -Name "defaultsubnetconf" -VirtualNetwork
241
241
$recoveryVnet -AddressPrefix "10.0.0.0/24" | Set-AzVirtualNetwork
242
242
$recoveryNetwork = $recoveryVnet.Id
@@ -249,7 +249,7 @@ To replicate VMs running in an Azure Extended Zone to an Azure region, follow th
249
249
250
250
```
251
251
$RecoveryRG = Get-AzResourceGroup -Name "edgezonerecoveryrg" -Location "
252
- <EdgeZoneRegion >"
252
+ <AzureRegion >"
253
253
```
254
254
255
255
1. Get VM and display contents.
@@ -347,7 +347,7 @@ To replicate VMs running in an Azure Extended Zone to an Azure region, follow th
347
347
348
348
```
349
349
$TFOVnet = New-AzVirtualNetwork -Name "TFOvnet" -ResourceGroupName "edgezonerecoveryrg"
350
- -Location '<EdgeZoneRegion >' -AddressPrefix "10.3.0.0/26"
350
+ -Location '<AzureRegion >' -AddressPrefix "10.3.0.0/26"
351
351
352
352
Add-AzVirtualNetworkSubnetConfig -Name "default" -VirtualNetwork $TFOVnet -AddressPrefix
353
353
"10.3.0.0/26" | Set-AzVirtualNetwork
@@ -447,11 +447,11 @@ To replicate VMs running in an Azure Extended Zone to an Azure region, follow th
447
447
448
448
```
449
449
$EdgeZoneCacheStorageAccount = New-AzStorageAccount -Name "cachestorageedgezone" -
450
- ResourceGroupName "<ResourceGroupName>" -Location '<EdgeZoneRegion >' -SkuName
450
+ ResourceGroupName "<ResourceGroupName>" -Location '<AzureRegion >' -SkuName
451
451
Standard_LRS -Kind Storage
452
452
```
453
453
454
- 1. Use the recovery protection container, the new cache storage account in Azure Public MEC 's region, and the source region VM resource group.
454
+ 1. Use the recovery protection container, the new cache storage account in Azure Extended Zone 's region, and the source region VM resource group.
455
455
456
456
```
457
457
$ReplicationProtectedItem = Get-AzRecoveryServicesAsrReplicationProtectedItem -
0 commit comments