10 lines
194 B
HCL
10 lines
194 B
HCL
locals {
|
|
default_tags = merge(
|
|
var.additional_tags,
|
|
{
|
|
Maintainer = "Ric"
|
|
Owner = var.name
|
|
Environment = var.environment
|
|
ManagedBy = "terraform"
|
|
})
|
|
}
|