mirror of
https://gitlab.sarex.io/infra/terraform-contour-mirror.git
synced 2026-08-06 02:31:35 +03:00
- Add modules: yc-s3, yc-postgresql, k8s-namespace, k8s-secrets - Add live configuration for stage environment - Add GitLab CI with downstream pipelines - Implement best practices from theory.md
17 lines
340 B
HCL
17 lines
340 B
HCL
variable "namespace_name" {
|
|
description = "Name of the Kubernetes namespace"
|
|
type = string
|
|
}
|
|
|
|
variable "labels" {
|
|
description = "Labels for the namespace"
|
|
type = map(string)
|
|
default = {}
|
|
}
|
|
|
|
variable "annotations" {
|
|
description = "Annotations for the namespace"
|
|
type = map(string)
|
|
default = {}
|
|
}
|