Skip to content

Commit a28605d

Browse files
committed
treat forge-test as a production environment
1 parent 7819d21 commit a28605d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
locals {
2-
is_production = var.environment == "prod" || startswith(var.environment, "prod-") || endswith(var.environment, "-prod")
2+
is_production = var.environment == "prod" || startswith(var.environment, "prod-") || endswith(var.environment, "-prod") || var.environment == "forge-test"
33
is_staging = var.environment == "staging" || startswith(var.environment, "staging-") || endswith(var.environment, "-staging")
44

55
# Only prod and staging get their own resources. All other envs will share the dev shared infra

0 commit comments

Comments
 (0)