Skip to content

Commit a99354f

Browse files
committed
Adding qa environment to validation
Adding qa environment to validation
1 parent 1bccf17 commit a99354f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tags.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
variable "environment" {
2-
description = "Environment (sharedtools, dev, staging, prod)"
2+
description = "Environment (sharedtools, dev, qa, staging, prod)"
33
type = string
44
validation {
5-
condition = contains(["sharedtools", "dev", "staging", "prod"], var.environment)
6-
error_message = "The environment variable must be one of [sharedtools, dev, staging, prod]."
5+
condition = contains(["sharedtools", "dev", "qa", "staging", "prod"], var.environment)
6+
error_message = "The environment variable must be one of [sharedtools, dev, qa, staging, prod]."
77
}
88
}
99

0 commit comments

Comments
 (0)