Skip to content

Commit

Permalink
azurerm_applicaton_gateway -priority is now required (#16849)
Browse files Browse the repository at this point in the history
  • Loading branch information
bubbletroubles authored Jun 9, 2022
1 parent b9215b3 commit 565e386
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/network/application_gateway_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,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

0 comments on commit 565e386

Please sign in to comment.