-
Notifications
You must be signed in to change notification settings - Fork 21.9k
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
Open
maotsuk
wants to merge
1
commit into
MicrosoftDocs:main
Choose a base branch
from
maotsuk:patch-16
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+4
−3
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 ` | ||
| ``` | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.