From d2b56fb665679a2a62fe8cf3ac7582943c295525 Mon Sep 17 00:00:00 2001 From: badra001 Date: Tue, 17 Feb 2026 09:57:27 -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 4565912..24094ae 100644 --- a/base-label/base.tf +++ b/base-label/base.tf @@ -5,7 +5,7 @@ locals { environment = var.environment custom = var.custom } - base = { for k in ["business", "application", "environment", "custom"] : k => try(local.base_in.base[k], try(var.base_variables[k], null)) } + base = { for k in ["business", "application", "environment", "custom"] : k => try(local.base_in.base[k], try(local.base_variables[k], null)) } } resource "terraform_data" "base_environment" {