From eba163d35ec45bb64dde2e18ff96ea8a928f8901 Mon Sep 17 00:00:00 2001 From: Mike VanDenburgh Date: Thu, 16 Feb 2023 13:51:39 -0500 Subject: [PATCH] Remove SG rule allowing ingress on all ports --- terraform/modules/spack/eks.tf | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/terraform/modules/spack/eks.tf b/terraform/modules/spack/eks.tf index c9724e1e0..d7f1ac057 100644 --- a/terraform/modules/spack/eks.tf +++ b/terraform/modules/spack/eks.tf @@ -26,17 +26,6 @@ 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