-
Couldn't load subscription status.
- Fork 21.8k
feedback for the enhanced migration guide for Application Gateway V2 #127763
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -103,7 +103,7 @@ To run the script: | |
| -AppGWResourceGroupName "MyResourceGroup" ` | ||
| -privateIpAddress "10.0.0.1" ` | ||
| -publicIpResourceId "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/MyResourceGroup/providers/Microsoft.Network/publicIPAddresses/MyPublicIP" ` | ||
| -enableAutoScale | ||
|
|
||
| ``` | ||
| ### Recommendations | ||
| * After script completion, review the V2 gateway configuration in the Azure portal and test connectivity by sending traffic directly to the V2 gateway’s IP. | ||
|
|
@@ -262,6 +262,7 @@ To use this option, you must not have the Azure Az modules installed on your com | |
| Run the script with the following command to get the latest version: | ||
|
|
||
| * For enhanced cloning script - `Install-Script -Name AzureAppGWClone -Force` | ||
| * For enhanced cloning Public IP Retention script - `Install-Script -Name AzureAppGWIPMigrate -Force` | ||
|
|
||
| * For the legacy cloning script - `Install-Script -Name AzureAppGWMigration -Force` | ||
|
|
||
|
|
@@ -312,15 +313,15 @@ You can **download** this Public IP retention script from the [PowerShell Gall | |
|
|
||
| After downloading and [installing the script](../application-gateway/migrate-v1-v2.md#installing-the-script) | ||
|
|
||
| Execute AzureAppGWClone.ps1 with the required parameters: | ||
| Execute AzureAppGWIPMigrate.ps1 with the required parameters: | ||
| ``` | ||
| AzureAppGWIPMigrate.ps1 | ||
| -v1resourceId <V1 application gateway Resource ID> | ||
| -v2resourceId <V2 application gateway Resource ID> | ||
| ``` | ||
| **Example** | ||
| ```azurepowershell | ||
| ./AzureAppGWIPMigrate.ps1 ` | ||
| AzureAppGWIPMigrate.ps1 ` | ||
|
||
| -v1resourceId /subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/MyResourceGroup/providers/Microsoft.Network/applicationGateways/myv1appgateway ` | ||
| -v2resourceId /subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/MyResourceGroup/providers/Microsoft.Network/applicationGateways/myv2appgateway ` | ||
| ``` | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The removal of the
-enableAutoScaleparameter leaves an empty line in the code example. Consider removing this empty line to maintain clean formatting in the documentation.