Skip to content

Commit 0496c48

Browse files
author
Ankita Dutta
committed
edits
1 parent 753ee0e commit 0496c48

File tree

2 files changed

+437
-6
lines changed

2 files changed

+437
-6
lines changed

articles/site-recovery/tutorial-replicate-vms-edge-zone-to-azure-region.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -228,15 +228,15 @@ To replicate VMs running in an Azure Extended Zone to an Azure region, follow th
228228
229229
```
230230
$CacheStorageAccount = New-AzStorageAccount -Name "cachestorage" -ResourceGroupName
231-
"<primary ResourceGroupName>" -Location '<EdgeZoneRegion>' -SkuName Standard_LRS -
231+
"<primary ResourceGroupName>" -Location '<AzureRegion>' -SkuName Standard_LRS -
232232
Kind Storage
233233
```
234234
235235
1. Ensure to create a virtual network in the target location. Create a Recovery Network in the recovery region.
236236
237237
```
238238
$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"
240240
Add-AzVirtualNetworkSubnetConfig -Name "defaultsubnetconf" -VirtualNetwork
241241
$recoveryVnet -AddressPrefix "10.0.0.0/24" | Set-AzVirtualNetwork
242242
$recoveryNetwork = $recoveryVnet.Id
@@ -249,7 +249,7 @@ To replicate VMs running in an Azure Extended Zone to an Azure region, follow th
249249
250250
```
251251
$RecoveryRG = Get-AzResourceGroup -Name "edgezonerecoveryrg" -Location "
252-
<EdgeZoneRegion>"
252+
<AzureRegion>"
253253
```
254254
255255
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
347347
348348
```
349349
$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"
351351
352352
Add-AzVirtualNetworkSubnetConfig -Name "default" -VirtualNetwork $TFOVnet -AddressPrefix
353353
"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
447447
448448
```
449449
$EdgeZoneCacheStorageAccount = New-AzStorageAccount -Name "cachestorageedgezone" -
450-
ResourceGroupName "<ResourceGroupName>" -Location '<EdgeZoneRegion>' -SkuName
450+
ResourceGroupName "<ResourceGroupName>" -Location '<AzureRegion>' -SkuName
451451
Standard_LRS -Kind Storage
452452
```
453453
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.
455455
456456
```
457457
$ReplicationProtectedItem = Get-AzRecoveryServicesAsrReplicationProtectedItem -

0 commit comments

Comments
 (0)