Skip to content

Commit

Permalink
fix: added node security group additional rule to allow all traffic i…
Browse files Browse the repository at this point in the history
…nside the group
  • Loading branch information
kvvit committed Nov 25, 2024
1 parent b3016bf commit f56eb5a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions terraform/modules/aws-eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,17 @@ module "eks" {

node_security_group_tags = { "karpenter.sh/discovery" = var.name }

node_security_group_additional_rules = {
ingress_allow_all_traffic_inside = {
description = "Allow all traffic inside security group"
protocol = "all"
from_port = 0
to_port = 0
type = "ingress"
self = true
}
}

self_managed_node_group_defaults = {
ami_type = "AL2023_ARM_64_STANDARD"
block_device_mappings = {
Expand Down

0 comments on commit f56eb5a

Please sign in to comment.