From 010a73be651f7c9dadc18cc22ae1fe0d38f67268 Mon Sep 17 00:00:00 2001 From: Christopher Wellington <53270973+domino-cwellington@users.noreply.github.com> Date: Mon, 22 Jan 2024 12:02:03 -0500 Subject: [PATCH] add SG rule for newrelic webhook (#202) --- modules/eks/main.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/eks/main.tf b/modules/eks/main.tf index 580af46d..c5be0da4 100644 --- a/modules/eks/main.tf +++ b/modules/eks/main.tf @@ -177,6 +177,14 @@ locals { type = "egress" self = true } + ingress_cluster_8443 = { + description = "Cluster API to NewRelic webhook" + protocol = "tcp" + from_port = 8443 + to_port = 8443 + type = "ingress" + source_cluster_security_group = true + } }, var.privatelink.enabled ? { private_link = { description = "NLB from private link to node ports"