feat: Add launch_template_tags variable for additional launch template tags (#1835)

This commit is contained in:
kahirokunn
2022-02-03 23:45:50 +09:00
committed by GitHub
parent d81ff0ddb1
commit 9186defcf6
7 changed files with 18 additions and 2 deletions

View File

@@ -238,6 +238,12 @@ variable "placement" {
default = null
}
variable "launch_template_tags" {
description = "A map of additional tags to add to the tag_specifications of launch template created"
type = map(string)
default = {}
}
################################################################################
# EKS Managed Node Group
################################################################################