Skip to content

Commit

Permalink
Revert "Remove SG rule allowing ingress on all ports"
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandenburgh authored Feb 16, 2023
1 parent 79d2864 commit 3e974b1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions terraform/modules/spack/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ module "eks" {
},
]

node_security_group_additional_rules = {
ingress_self_all = {
description = "Node to node all ports/protocols"
protocol = "-1"
from_port = 0
to_port = 0
type = "ingress"
self = true
}
}

node_security_group_tags = {
# NOTE - if creating multiple security groups with this module, only tag the
# security group that Karpenter should utilize with the following tag
Expand Down

0 comments on commit 3e974b1

Please sign in to comment.