terraform-tofu-labs/2-simple-example/code/locals.tf
2024-04-16 16:32:58 +01:00

9 lines
173 B
HCL

locals {
default_tags = merge(
var.additional_tags,
{
Owner = var.name
Environment = var.environment
ManagedBy = "tofu/terraform"
})
}