mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-20 00:23:46 +01:00
feat: Allow communication between pods on workers and pods using the primary cluster security group (optional) (#892)
NOTES: New variable `worker_create_cluster_primary_security_group_rules` to allow communication between pods on workers and pods using the primary cluster security group (Managed Node Groups or Fargate). It defaults to `false` to avoid potential conflicts with existing security group rules users may have implemented.
This commit is contained in:
@@ -228,6 +228,12 @@ variable "worker_create_initial_lifecycle_hooks" {
|
||||
default = false
|
||||
}
|
||||
|
||||
variable "worker_create_cluster_primary_security_group_rules" {
|
||||
description = "Whether to create security group rules to allow communication between pods on workers and pods using the primary cluster security group."
|
||||
type = bool
|
||||
default = false
|
||||
}
|
||||
|
||||
variable "permissions_boundary" {
|
||||
description = "If provided, all IAM roles will be created with this permissions boundary attached."
|
||||
type = string
|
||||
|
||||
Reference in New Issue
Block a user