Skip to content

Commit

Permalink
app gateway doc: add v1 sku deprecation (hashicorp#23310)
Browse files Browse the repository at this point in the history
  • Loading branch information
teowa authored Sep 19, 2023
1 parent 0eabc5a commit 7112e27
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions website/docs/r/application_gateway.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ resource "azurerm_application_gateway" "network" {
location = azurerm_resource_group.example.location
sku {
name = "Standard_Small"
tier = "Standard"
name = "Standard_v2"
tier = "Standard_v2"
capacity = 2
}
Expand Down Expand Up @@ -105,6 +105,7 @@ resource "azurerm_application_gateway" "network" {
request_routing_rule {
name = local.request_routing_rule_name
priority = 9
rule_type = "Basic"
http_listener_name = local.listener_name
backend_address_pool_name = local.backend_address_pool_name
Expand Down Expand Up @@ -453,6 +454,8 @@ A `sku` block supports the following:

* `tier` - (Required) The Tier of the SKU to use for this Application Gateway. Possible values are `Standard`, `Standard_v2`, `WAF` and `WAF_v2`.

!> **NOTE:** The `Standard` and `WAF` SKU have been deprecated in favour of the `Standard_v2` and `WAF_v2` SKU. Please see the [Azure documentation](https://aka.ms/V1retirement) for more details.

* `capacity` - (Optional) The Capacity of the SKU to use for this Application Gateway. When using a V1 SKU this value must be between 1 and 32, and 1 to 125 for a V2 SKU. This property is optional if `autoscale_configuration` is set.

---
Expand Down

0 comments on commit 7112e27

Please sign in to comment.