From 43a113f0a64d3c268d0c831e6e4c0fc0f6582e4d Mon Sep 17 00:00:00 2001 From: Sylvie Date: Fri, 25 Oct 2024 13:11:13 -0500 Subject: [PATCH] setting a temp var to trigger pr env build --- operations/template/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/operations/template/main.tf b/operations/template/main.tf index bc083cff3..792f95e4d 100644 --- a/operations/template/main.tf +++ b/operations/template/main.tf @@ -8,6 +8,7 @@ locals { rs_domain_prefix = "${local.selected_rs_environment_prefix}${length(local.selected_rs_environment_prefix) == 0 ? "" : "."}" higher_environment_level = var.environment == "stg" || var.environment == "prd" cdc_domain_environment = var.environment == "dev" || var.environment == "stg" || var.environment == "prd" + cheezburger = "cheezburger" // setting something in TF to trigger a PR build // If the environment looks like pr123, regexall will contain matches. If there are no matches, it's a non-pr env non_pr_environment = length(regexall("^pr\\d+", var.environment)) == 0