Skip to content

Instantly share code, notes, and snippets.

@unacceptable
Created July 7, 2020 17:30
Show Gist options
  • Save unacceptable/61ae2cdc951c901e074c4e704edb4ad8 to your computer and use it in GitHub Desktop.
Save unacceptable/61ae2cdc951c901e074c4e704edb4ad8 to your computer and use it in GitHub Desktop.
variable "tags" {
default = {}
}
locals {
tags = merge(var.tags, local.default_tags)
default_tags = {
Name = local.name
}
asg_tags = [
for tag_name in keys(local.tags): tomap(
{
"key" = tag_name,
"value" = local.tags[tag_name],
"propagate_at_launch" = "true"
}
)
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment