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" {