Skip to content

Commit

Permalink
use lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Feb 19, 2025
1 parent d2a9ac9 commit 8260a9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion examples/simple/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ variable "vpc_id" {
}
}


variable "subnets" {
description = "Specify the subnets used by this cluster"
type = list(string)
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ variable "tags" {
(
# Allow either production format or test format
can(regex("^[\\w\\s+=.@-]*$", k)) && can(regex("^[\\w\\s+=.@-]*$", v)) ||
can(regex("^Environment$", k)) && can(regex("^test$", v)) # Special case for test environment
can(regex("^environment$", k)) && can(regex("^test$", v)) # Special case for test environment
)
])
error_message = "Tag keys must be <= 128 chars, values <= 256 chars, and both can only contain alphanumeric characters, spaces, and '.+-=@_'. For test environment, use 'Environment': 'test'."
error_message = "Tag keys must be <= 128 chars, values <= 256 chars, and both can only contain alphanumeric characters, spaces, and '.+-=@_'. For test environment, use 'environment': 'test'."
}
}

Expand Down

0 comments on commit 8260a9e

Please sign in to comment.