feat: Allow configuring which tags are passed on launch template tag specifications (#2360)

Resolves undefined
This commit is contained in:
Bryant Biggs
2022-12-19 13:50:32 -05:00
committed by GitHub
parent 046c688be2
commit 094ed1d5e4
7 changed files with 18 additions and 2 deletions

View File

@@ -286,6 +286,12 @@ variable "launch_template_tags" {
default = {}
}
variable "tag_specifications" {
description = "The tags to apply to the resources during launch"
type = list(string)
default = ["instance", "volume", "network-interface", "spot-instances-request"]
}
################################################################################
# Autoscaling group
################################################################################