feat: Add autoscaling_group_tags variable to self-managed-node-groups (#2084)

Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
This commit is contained in:
Gabriel Féron
2022-06-02 14:26:49 +02:00
committed by GitHub
parent 8178010326
commit 8584dcb2e0
5 changed files with 26 additions and 2 deletions

View File

@@ -464,6 +464,12 @@ variable "use_default_tags" {
default = false
}
variable "autoscaling_group_tags" {
description = "A map of additional tags to add to the autoscaling group created. Tags are applied to the autoscaling group only and are NOT propagated to instances"
type = map(string)
default = {}
}
################################################################################
# Autoscaling group schedule
################################################################################