Skip to content

Commit 6599a78

Browse files
authored
fix: added node security group additional rule to allow all traffic i… (#359)
* fix: added node security group additional rule to allow all traffic inside the node group
1 parent b3016bf commit 6599a78

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

terraform/modules/aws-eks/main.tf

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,17 @@ module "eks" {
4242

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

45+
node_security_group_additional_rules = {
46+
ingress_allow_all_traffic_inside = {
47+
description = "Allow all traffic inside security group"
48+
protocol = "all"
49+
from_port = 0
50+
to_port = 0
51+
type = "ingress"
52+
self = true
53+
}
54+
}
55+
4556
self_managed_node_group_defaults = {
4657
ami_type = "AL2023_ARM_64_STANDARD"
4758
block_device_mappings = {

0 commit comments

Comments
 (0)