From 7527d110664e3784c89a85115e69db7b675ad30d Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Wed, 22 Oct 2025 17:14:53 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(cert-manager):=20add=20port=20?= =?UTF-8?q?for=20cert-manager=20webhook?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- additional_sg_rules.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/additional_sg_rules.tf b/additional_sg_rules.tf index b93a8bf..f4f5908 100644 --- a/additional_sg_rules.tf +++ b/additional_sg_rules.tf @@ -26,11 +26,11 @@ locals { type = "ingress" } ingress_cert_manager_webhook = { - description = "Cert Manager webhook" - from_port = 9402 + description = "cert-manager webhook" + from_port = 10260 protocol = "tcp" source_cluster_security_group = true - to_port = 9402 + to_port = 10260 type = "ingress" } }