From 343b7e6509a2e016dacc1b27935cbd64b79f2667 Mon Sep 17 00:00:00 2001 From: Secretions Date: Thu, 29 Aug 2024 16:46:49 -0700 Subject: [PATCH] PLAT-8786: Add 1053 to node security group for vcluster's coredns (#262) --- modules/eks/main.tf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/modules/eks/main.tf b/modules/eks/main.tf index 76a123fc..5da96506 100644 --- a/modules/eks/main.tf +++ b/modules/eks/main.tf @@ -145,6 +145,22 @@ locals { type = "ingress" self = true } + ingress_self_vcluster_coredns_tcp = { + description = "Node to node vcluster CoreDNS" + protocol = "tcp" + from_port = 1053 + to_port = 1053 + type = "ingress" + self = true + } + ingress_self_vcluster_coredns_udp = { + description = "Node to node vcluster CoreDNS" + protocol = "udp" + from_port = 1053 + to_port = 1053 + type = "ingress" + self = true + } inter_node_traffic_in_80 = { description = "Node to node http traffic" protocol = "tcp"