Skip to content

Commit

Permalink
Update variables.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
David Arnold authored and GitHub committed Mar 20, 2025
1 parent 6b76476 commit bc4bf58
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand All @@ -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" {
Expand Down

0 comments on commit bc4bf58

Please sign in to comment.