Skip to content

Commit 7cf4efa

Browse files
committed
Ensure environment tag is lowercase
1 parent 03c93b3 commit 7cf4efa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

terraform/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ locals {
4242
account_id = data.aws_caller_identity.current.account_id
4343
default_tags = length(var.default_tags) == 0 ? {
4444
application : var.app_name,
45-
environment : var.environment,
45+
environment : lower(var.environment),
4646
version : var.app_version
4747
} : var.default_tags
4848
}

0 commit comments

Comments
 (0)