From 059dc0c67c2aebbf2c9a2f0a05856a823dd1b5a0 Mon Sep 17 00:00:00 2001 From: Adin Hodovic Date: Sat, 28 Jan 2023 14:02:12 +0100 Subject: [PATCH] feat: Add prometheus-adapter port 6443 to recommended sec groups (#2399) Co-authored-by: Bryant Biggs --- node_groups.tf | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/node_groups.tf b/node_groups.tf index 8d84d33..85c6138 100644 --- a/node_groups.tf +++ b/node_groups.tf @@ -124,6 +124,15 @@ locals { type = "ingress" source_cluster_security_group = true } + # prometheus-adapter + ingress_cluster_6443_webhook = { + description = "Cluster API to node 6443/tcp webhook" + protocol = "tcp" + from_port = 6443 + to_port = 6443 + type = "ingress" + source_cluster_security_group = true + } # Karpenter ingress_cluster_8443_webhook = { description = "Cluster API to node 8443/tcp webhook"