Skip to content

Commit

Permalink
Allow node-to-node TCP traffic on all ports
Browse files Browse the repository at this point in the history
  • Loading branch information
jake-low committed Jan 7, 2025
1 parent 7590445 commit 232572b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions terraform/resources/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,17 @@ module "eks" {
}
}
}

node_security_group_additional_rules = {
ingress_self_all = {
description = "Node to node ingress on all ports (default only permits ingress on unprivileged ports)"
protocol = "tcp"
from_port = 1
to_port = 65535
type = "ingress"
self = true
}
}
}

# Secret for Django secret key
Expand Down

0 comments on commit 232572b

Please sign in to comment.