Skip to content

Commit

Permalink
Merge pull request #115 from databricks/bugfix/azure_cidr_order
Browse files Browse the repository at this point in the history
fix(azure): Reorder subnet_addrs networks
  • Loading branch information
nathanknox authored Jan 13, 2025
2 parents 5e3481d + f95bc20 commit e83f65b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions azure/tf/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ module "subnet_addrs" {

base_cidr_block = var.hub_vnet_cidr
networks = [
{
name = "privatelink"
new_bits = local.privatelink_newbits
},
{
name = "firewall"
new_bits = local.firewall_newbits
Expand All @@ -23,10 +27,6 @@ module "subnet_addrs" {
name = "webauth-container"
new_bits = local.webauth_newbits
},
{
name = "privatelink"
new_bits = local.privatelink_newbits
},
{
name = "testvm"
new_bits = local.testvm_newbits
Expand Down

0 comments on commit e83f65b

Please sign in to comment.