terraform-tofu-labs/2-simple-example/code/locals.tf

10 lines
173 B
Terraform
Raw Permalink Normal View History

2024-04-15 22:33:12 +00:00
locals {
default_tags = merge(
var.additional_tags,
{
Owner = var.name
Environment = var.environment
2024-04-16 15:32:58 +00:00
ManagedBy = "tofu/terraform"
2024-04-15 22:33:12 +00:00
})
}