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

@@ -400,6 +400,16 @@ resource "aws_autoscaling_group" "this" {
}
}
dynamic "tag" {
for_each = var.autoscaling_group_tags
content {
key = tag.key
value = tag.value
propagate_at_launch = false
}
}
timeouts {
delete = var.delete_timeout
}