feat: Allow users to selectively attach the EKS created cluster primary security group to nodes (#1952)

This commit is contained in:
Bryant Biggs
2022-03-23 10:41:39 -04:00
committed by GitHub
parent 9528619aca
commit e21db83d8f
9 changed files with 45 additions and 26 deletions

View File

@@ -126,6 +126,12 @@ variable "vpc_security_group_ids" {
default = []
}
variable "cluster_primary_security_group_id" {
description = "The ID of the EKS cluster primary security group to associate with the instance(s). This is the security group that is automatically created by the EKS service"
type = string
default = null
}
variable "launch_template_default_version" {
description = "Default version of the launch template"
type = string