Skip to content

Commit

Permalink
really fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Feb 17, 2026
1 parent 93fd1b6 commit 2ef899e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions base-label/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ output "version" {
output "core" {
description = "Map of base label format values"
value = {
business = var.business
application = var.application
environment = var.environment
custom = var.custom
business = local.base.business
application = local.base.application
environment = local.base.environment
custom = local.base.custom
}
}

locals {
_blf_parts = [
var.business,
var.application,
var.environment,
var.custom,
local.base.business,
local.base.application,
local.base.environment,
local.base.custom,
]
blf_parts = compact(local._blf_parts)
_blf_prefix = [
var.business,
var.application,
var.environment,
local.base.business,
local.base.application,
local.base.environment,
]
blf_prefix = compact(local._blf_prefix)
prefix_dash = join("-", local.blf_prefix)
Expand Down

0 comments on commit 2ef899e

Please sign in to comment.