Skip to content

Commit 89f78de

Browse files
authored
Merge pull request #1 from duongau/patch-11
VPN Gateway - Basic IP migrate how to (change ps version to latest)
2 parents a1dc1ff + 8a67413 commit 89f78de

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/vpn-gateway/basic-public-ip-migrate-howto.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Use Azure PowerShell to migrate your Basic SKU public IP address resource to a S
102102
103103
### Prepare for migration
104104

105-
Run [Invoke-AzVirtualNetworkGatewayPrepareMigration](/powershell/module/az.network/invoke-azvirtualnetworkgatewaypreparemigration?view=azps-14.2.0) to prepare your gateway for migration.
105+
Run [Invoke-AzVirtualNetworkGatewayPrepareMigration](/powershell/module/az.network/invoke-azvirtualnetworkgatewaypreparemigration?view=azps-latest) to prepare your gateway for migration.
106106

107107
```azurepowershell-interactive
108108
$gateway = Get-AzVirtualNetworkGateway -Name "ContosoVirtualGateway" -ResourceGroupName "RGName"
@@ -112,7 +112,7 @@ Invoke-AzVirtualNetworkGatewayPrepareMigration -InputObject $gateway -MigrationP
112112

113113
### Execute migration
114114

115-
Run [Invoke-AzVirtualNetworkGatewayExecuteMigration](/powershell/module/az.network/invoke-azvirtualnetworkgatewayexecutemigration?view=azps-14.2.0) to start the migration.
115+
Run [Invoke-AzVirtualNetworkGatewayExecuteMigration](/powershell/module/az.network/invoke-azvirtualnetworkgatewayexecutemigration?view=azps-latest) to start the migration.
116116

117117
```azurepowershell-interactive
118118
$gateway = Get-AzVirtualNetworkGateway -Name "ContosoVirtualGateway" -ResourceGroupName "RGName"
@@ -121,7 +121,7 @@ Invoke-AzVirtualNetworkGatewayExecuteMigration -InputObject $gateway
121121

122122
### Commit migration
123123

124-
After validating that migration was successful, run [Invoke-AzVirtualNetworkGatewayCommitMigration](/powershell/module/az.network/invoke-azvirtualnetworkgatewaycommitmigration?view=azps-14.2.0) to finalize the migration.
124+
After validating that migration was successful, run [Invoke-AzVirtualNetworkGatewayCommitMigration](/powershell/module/az.network/invoke-azvirtualnetworkgatewaycommitmigration?view=azps-latest) to finalize the migration.
125125

126126
```azurepowershell-interactive
127127
$gateway = Get-AzVirtualNetworkGateway -Name "ContosoVirtualGateway" -ResourceGroupName "RGName"
@@ -130,7 +130,7 @@ Invoke-AzVirtualNetworkGatewayCommitMigration -InputObject $gateway
130130

131131
### Abort migration
132132

133-
If you need to roll back the migration before committing, run [Invoke-AzVirtualNetworkGatewayAbortMigration](/powershell/module/az.network/invoke-azvirtualnetworkgatewayabortmigration?view=azps-14.2.0).
133+
If you need to roll back the migration before committing, run [Invoke-AzVirtualNetworkGatewayAbortMigration](/powershell/module/az.network/invoke-azvirtualnetworkgatewayabortmigration?view=azps-latest).
134134

135135
```azurepowershell-interactive
136136
$gateway = Get-AzVirtualNetworkGateway -Name "ContosoVirtualGateway" -ResourceGroupName "RGName"

0 commit comments

Comments
 (0)