Bug fix in env handling
Some checks failed
Test / Unit Tests — K8s Stack (push) Successful in 35s
Test / Integration Test — K8s (k3d) (push) Has been skipped
Test / Static Analysis (push) Successful in 32s
Test / Unit Tests — Docker Stack (push) Failing after 31s

This commit is contained in:
2026-03-14 08:46:50 +01:00
parent 6eea448001
commit 797ea32620

View File

@@ -26,6 +26,11 @@ variable "environment" {
description = "Deployment environment: 'prod' (persistent volumes) or 'dev' (ephemeral)."
type = string
default = "dev"
validation {
condition = contains(["prod", "dev"], var.environment)
error_message = "environment must be 'prod' or 'dev'."
}
}
# ─── OpenResty ────────────────────────────────────────────────────────────────