terraform-tofu-labs/3-remote-states/code/locals.tf

10 lines
173 B
Terraform
Raw 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 17:23:24 +00:00
ManagedBy = "tofu/terraform"
2024-04-15 22:33:12 +00:00
})
}