-
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?
Conversation
I run both new enhanced scripts and found some document errors and feedback for less confusion. 1. AzureAppGWClone script doesn't seem to have "-enableAutoScale" parameter since I got error if I added. So better to remove it from the sample script. 2. Add install script command for PIP retention script. 3. wrong script name was mentioned for PIP retention script. It should be "AzureAppGWIPMigrate"
|
@maotsuk : Thanks for your contribution! The author(s) and reviewer(s) have been notified to review your proposed change. |
|
Learn Build status updates of commit e539c45: ✅ Validation status: passed
For more details, please refer to the build report. |
|
Can you review the proposed changes? Important: When the changes are ready for publication, adding a #label:"aq-pr-triaged" |
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.
Pull Request Overview
This PR corrects documentation errors in the Application Gateway V2 migration guide based on feedback from testing the enhanced migration scripts. The changes improve accuracy and clarity of the migration instructions.
Key changes:
- Removes unsupported
-enableAutoScaleparameter from the cloning script example - Adds missing installation command for the PIP retention script
- Corrects script name references from AzureAppGWClone to AzureAppGWIPMigrate
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| -privateIpAddress "10.0.0.1" ` | ||
| -publicIpResourceId "/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/MyResourceGroup/providers/Microsoft.Network/publicIPAddresses/MyPublicIP" ` | ||
| -enableAutoScale | ||
Copilot
AI
Oct 23, 2025
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 -enableAutoScale parameter leaves an empty line in the code example. Consider removing this empty line to maintain clean formatting in the documentation.
| **Example** | ||
| ```azurepowershell | ||
| ./AzureAppGWIPMigrate.ps1 ` | ||
| AzureAppGWIPMigrate.ps1 ` |
Copilot
AI
Oct 23, 2025
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.
[nitpick] The script invocation is missing the './' prefix for consistency with PowerShell script execution conventions. Consider changing to './AzureAppGWIPMigrate.ps1' to match the corrected example pattern on line 316.
I run both new enhanced scripts and found some document errors and feedback for less confusion.
1.(Line 106) The AzureAppGWClone script does not appear to support the -enableAutoScale parameter, as adding it results in an error. It would be better to remove this parameter from the sample script.
(Line 265) Include the command to install the PIP retention script.
(Line 324) The script name for the PIP retention script is incorrect. It should be AzureAppGWIPMigrate.