mirror of
https://gitlab.sarex.io/infra/terraform-contour-mirror.git
synced 2026-08-05 18:31:00 +03:00
12 lines
419 B
HCL
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)
|
|
}))
|
|
}
|