terraform-contour-mirror/modules/k8s-namespace/variables.tf

12 lines
419 B
HCL

variable "namespaces" {
description = "List of Kubernetes namespaces to create"
type = list(object({
name = string
labels = optional(map(string), {})
annotations = optional(map(string), {})
# When true, the secrets stack rolls the common regcred (dockerconfigjson)
# into this namespace. Not used by the namespace module itself.
image_pull_secret = optional(bool, false)
}))
}