Skip to content

Commit

Permalink
fix node pool var pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Jan 5, 2024
1 parent 5786e97 commit 0ac1cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/clouds/azure/aks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ module "aks" {
sku_tier = "Standard"
rbac_aad = true
vnet_subnet_id = azurerm_subnet.network.id
node_pools = [for pool in var.var.node_pools : merge(pool, {vnet_subnet_id = azurerm_subnet.network.id})]
node_pools = [for pool in var.node_pools : merge(pool, {vnet_subnet_id = azurerm_subnet.network.id})]
}

0 comments on commit 0ac1cc2

Please sign in to comment.