terraform-tofu-labs/3-remote-states/iac/locals.tf
2024-04-15 23:33:12 +01:00

10 lines
194 B
HCL

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