Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Feb 17, 2026
1 parent 0f73ac9 commit d2b56fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base-label/base.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit d2b56fb

Please sign in to comment.