Skip to content

Commit

Permalink
Use address_prefixes in azurerm_application_gateway (hashicorp#7072)
Browse files Browse the repository at this point in the history
Use address_prefixes instead of deprecated address_prefix in example
  • Loading branch information
marcin-dudek authored and pbrit committed May 31, 2020
1 parent c61b258 commit 5f0387c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/r/application_gateway.html.markdown
Expand Up @@ -29,14 +29,14 @@ resource "azurerm_subnet" "frontend" {
name = "frontend"
resource_group_name = azurerm_resource_group.example.name
virtual_network_name = azurerm_virtual_network.example.name
address_prefix = "10.254.0.0/24"
address_prefixes = ["10.254.0.0/24"]
}
resource "azurerm_subnet" "backend" {
name = "backend"
resource_group_name = azurerm_resource_group.example.name
virtual_network_name = azurerm_virtual_network.example.name
address_prefix = "10.254.2.0/24"
address_prefixes = ["10.254.2.0/24"]
}
resource "azurerm_public_ip" "example" {
Expand Down

0 comments on commit 5f0387c

Please sign in to comment.