Skip to content

Commit

Permalink
fix(aks): allow multiple az identities in same namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
fsismondi committed Feb 17, 2022
1 parent c6f6d72 commit 3da2163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/aks/azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ locals {
}

namespaces = merge(
{ for i in local.azureidentities : i.namespace => null },
{ for i in distinct(var.azureidentities[*].namespace) : i => null },
var.app_node_selectors
)
}
Expand Down

0 comments on commit 3da2163

Please sign in to comment.