terraform-contour-mirror/modules/k8s-namespace/variables.tf
2026-01-28 13:19:41 +03:00

9 lines
226 B
HCL

variable "namespaces" {
description = "List of Kubernetes namespaces to create"
type = list(object({
name = string
labels = optional(map(string), {})
annotations = optional(map(string), {})
}))
}