Skip to content

Commit 27e41fc

Browse files
authored
Priority config missing in front end rule creation
When I try the create front end rule as per the doc, $frontendRule = New-AzApplicationGatewayRequestRoutingRule ` -Name rule1 ` -RuleType Basic ` -HttpListener $defaultlistener ` -BackendAddressPool $backendPool ` -BackendHttpSettings $poolSettings, Instead of this: It has to be this, with priority configuration added. $frontendRule = New-AzApplicationGatewayRequestRoutingRule ` -Name rule1 ` -RuleType Basic ` -Priority 100 ` -HttpListener $defaultlistener ` -BackendAddressPool $backendPool ` -BackendHttpSettings $poolSettings It says priority is not configured when I try to create an application gateway with the steps. I would like to suggest adding -priority 100 with the creating front end rule step so application gateway creation step passes and deploys app gateway.
1 parent a6bd400 commit 27e41fc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

articles/application-gateway/quick-create-powershell.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ $defaultlistener = New-AzApplicationGatewayHttpListener `
129129
$frontendRule = New-AzApplicationGatewayRequestRoutingRule `
130130
-Name rule1 `
131131
-RuleType Basic `
132+
-Priority 100 `
132133
-HttpListener $defaultlistener `
133134
-BackendAddressPool $backendPool `
134135
-BackendHttpSettings $poolSettings

0 commit comments

Comments
 (0)