Skip to content
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

azurerm_applicaton_gateway -priority is now required #16849

Merged
merged 8 commits into from
Jun 9, 2022
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ func resourceApplicationGateway() *pluginsdk.Resource {

"priority": {
Type: pluginsdk.TypeInt,
Optional: true,
Required: true,
ValidateFunc: validation.IntBetween(1, 20000),
},

Expand Down
1 change: 1 addition & 0 deletions website/docs/r/application_gateway.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ resource "azurerm_application_gateway" "network" {
http_listener_name = local.listener_name
backend_address_pool_name = local.backend_address_pool_name
backend_http_settings_name = local.http_setting_name
priority = 10
}
}
```
Expand Down