From bc4bf5828ee978f79f3658f4067d96cc55038ab8 Mon Sep 17 00:00:00 2001 From: David Arnold <10138997+djaboxx@users.noreply.github.com> Date: Thu, 20 Mar 2025 14:49:01 -0700 Subject: [PATCH] Update variables.tf --- variables.tf | 8 -------- 1 file changed, 8 deletions(-) diff --git a/variables.tf b/variables.tf index 665da5e..c33ddfc 100644 --- a/variables.tf +++ b/variables.tf @@ -185,10 +185,6 @@ variable "secrets" { value = string })) default = [] - validation { - condition = alltrue([for s in var.secrets : can(regex("^[A-Z0-9_]+$", s.name))]) - error_message = "Secret names must contain only uppercase letters, numbers, and underscores." - } } variable "vars" { @@ -198,10 +194,6 @@ variable "vars" { value = string })) default = [] - validation { - condition = alltrue([for v in var.vars : can(regex("^[A-Z0-9_]+$", v.name))]) - error_message = "Variable names must contain only uppercase letters, numbers, and underscores." - } } variable "extra_files" {