mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-05-01 21:04:27 +02:00
Fix limiting behavior of workers_ingress_cluster security group
* New variable `worker_sg_ingress_from_port` allows to change the minimum port number from which pods will accept communication * See https://github.com/terraform-aws-modules/terraform-aws-eks/issues/27
This commit is contained in:
@@ -67,3 +67,8 @@ variable "worker_security_group_id" {
|
||||
description = "If provided, all workers will be attached to this security group. If not given, a security group will be created with necessary ingres/egress to work with the EKS cluster."
|
||||
default = ""
|
||||
}
|
||||
|
||||
variable "worker_sg_ingress_from_port" {
|
||||
description = "Minimum port number from which pods will accept communication. Must be changed to a lower value if some pods in your cluster will expose a port lower than 1025 (e.g. 22, 80, or 443)."
|
||||
default = "1025"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user