From 93fd1b6a0490ebc8d376168cf617bcac9aefe2d3 Mon Sep 17 00:00:00 2001 From: badra001 Date: Tue, 17 Feb 2026 10:06:33 -0500 Subject: [PATCH] fix --- base-label/base.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-label/base.tf b/base-label/base.tf index ee93fa2..92bc3aa 100644 --- a/base-label/base.tf +++ b/base-label/base.tf @@ -14,7 +14,7 @@ resource "terraform_data" "base_environment" { lifecycle { precondition { - condition = contains(["dev", "test", "qa", "uat", "ite", "stage", "prod", "cre", "sa", "services", "common"], [local.base.environment]) || local.base.environment == null + condition = contains(["dev", "test", "qa", "uat", "ite", "stage", "prod", "cre", "sa", "services", "common"], local.base.environment) || local.base.environment == null error_message = "The var.environment or base.environment value invalid. See https://github.e.it.census.gov/terraform/cloud-information/tree/master/aws/documentation/naming-tagging-standard for valid list." } }