Gonçalo Rodrigues 13b7149614 First Commit
2026-06-13 11:25:23 +01:00

12 lines
218 B
HCL

locals {
namespaces = ["auth", "home", "finance", "test", "monitoring", "infrastructure"]
}
resource "kubernetes_namespace" "domains" {
for_each = toset(local.namespaces)
metadata {
name = each.value
}
}