1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

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
@@ -274,6 +274,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"]
}
################################################################################
# EKS Managed Node Group
################################################################################