mirror of
https://gitlab.sarex.io/infra/terraform-contour-mirror.git
synced 2026-08-06 02:31:35 +03:00
9 lines
226 B
HCL
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), {})
|
|
}))
|
|
}
|