fix: Add conditional variable to allow users to opt out of tagging cluster primary security group (#2034)

This commit is contained in:
Bryant Biggs
2022-04-21 11:34:58 -04:00
committed by GitHub
parent 5815d17cd2
commit 51e418216f
7 changed files with 12 additions and 7 deletions

View File

@@ -101,6 +101,12 @@ variable "cluster_tags" {
default = {}
}
variable "create_cluster_primary_security_group_tags" {
description = "Indicates whether or not to tag the cluster's primary security group. This security group is created by the EKS service, not the module, and therefore tagging is handled after cluster creation"
type = bool
default = true
}
variable "cluster_timeouts" {
description = "Create, update, and delete timeout configurations for the cluster"
type = map(string)