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

11 lines
194 B
Terraform
Raw Normal View History

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