-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
Vimundad appgwt: Adding Rule Priority for Application Gateway RequestRoutingRule #13542
Vimundad appgwt: Adding Rule Priority for Application Gateway RequestRoutingRule #13542
Conversation
…aymundada27/azure-powershell into vimundad-appgwt-rulepriority
/azp run azure-powershell - powershell-core |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run azure-powershell - powershell-core |
Azure Pipelines successfully started running 1 pipeline(s). |
@@ -27,6 +27,7 @@ The **Set-AzApplicationGatewaySslCertificate** cmdlet updates an SSL certificate | |||
### Example 1: Update an existing SSL certificate on Application Gateway | |||
``` | |||
PS C:\> $appGW = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" | |||
[//]: # ([SuppressMessage\("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test password for the ssl certificate"\)]) |
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.
It is better a use a variable in the replacement of "P@ssw0rd"
/azp run azure-powershell - powershell-core |
Azure Pipelines successfully started running 1 pipeline(s). |
@@ -27,7 +27,8 @@ The **Set-AzApplicationGatewaySslCertificate** cmdlet updates an SSL certificate | |||
### Example 1: Update an existing SSL certificate on Application Gateway | |||
``` | |||
PS C:\> $appGW = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01" | |||
PS C:\> $password = ConvertTo-SecureString "P@ssw0rd" -AsPlainText -Force | |||
PS C:\> $passwordString = "P@ssw0rd" |
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.
what I mean is not to list password content in the doc, but use a variable as the replacement such as
PS C:> $password = ConvertTo-SecureString $passwordPlainString -AsPlainText -Force
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.
And no need to declare the $passwordPlainString
variable as well right?
Description
Adding a parameter 'Priority' to the Application Gateway RequestRoutingRule object.
Swagger PR - Azure/azure-rest-api-specs#7131
Checklist
CONTRIBUTING.md
ChangeLog.md
file(s) has been updated:ChangeLog.md
file can be found atsrc/{{SERVICE}}/{{SERVICE}}/ChangeLog.md
## Upcoming Release
header -- no new version header should be added