We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7819d21 commit a28605dCopy full SHA for a28605d
app/locals.tf
@@ -1,5 +1,5 @@
1
locals {
2
- is_production = var.environment == "prod" || startswith(var.environment, "prod-") || endswith(var.environment, "-prod")
+ is_production = var.environment == "prod" || startswith(var.environment, "prod-") || endswith(var.environment, "-prod") || var.environment == "forge-test"
3
is_staging = var.environment == "staging" || startswith(var.environment, "staging-") || endswith(var.environment, "-staging")
4
5
# Only prod and staging get their own resources. All other envs will share the dev shared infra
0 commit comments