Skip to content

Commit

Permalink
Trying to fix IP address errors
Browse files Browse the repository at this point in the history
  • Loading branch information
TomArcherMsft committed Oct 8, 2024
1 parent 42d2f05 commit 5fab9ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quickstart/101-aks-extended-zones/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ resource "random_pet" "azurerm_kubernetes_cluster_dns_prefix" {

resource "azurerm_virtual_network" "vnet" {
name = var.virtual_network_name
address_space = ["10.0.0.0/16"]
address_space = ["192.168.0.0/16"]
location = azurerm_resource_group.rg.location
resource_group_name = azurerm_resource_group.rg.name

subnet {
name = "subnet1"
address_prefix = "10.1.1.0/24"
address_prefix = "192.168.1.0/24"
}
}

Expand Down

0 comments on commit 5fab9ca

Please sign in to comment.