Next Bug Fix
Some checks failed
Test / Static Analysis (push) Successful in 37s
Test / Unit Tests — Docker Stack (push) Successful in 32s
Test / Unit Tests — K8s Stack (push) Successful in 35s
Test / Integration Test — K8s (k3d) (push) Failing after 1m27s

This commit is contained in:
2026-03-14 08:49:59 +01:00
parent 797ea32620
commit 9fdf5164da

View File

@@ -38,6 +38,11 @@ variable "environment" {
variable "openresty_source_type" {
description = "OpenResty config source: 'bind_mount', 'local_build', or 'git_clone'."
type = string
validation {
condition = contains(["bind_mount", "local_build", "git_clone"], var.openresty_source_type)
error_message = "openresty_source_type must be 'bind_mount', 'local_build', or 'git_clone'."
}
}
variable "openresty_image" {