From 710360033ab10ff99e4dc139401217de3270aa0c Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Thu, 20 Mar 2025 20:47:06 -0400 Subject: [PATCH] align with upstream --- security_groups.tf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/security_groups.tf b/security_groups.tf index 5fc9024..e8449a3 100644 --- a/security_groups.tf +++ b/security_groups.tf @@ -10,7 +10,11 @@ resource "aws_security_group" "additional_eks_cluster_sg" { tags = merge( local.base_tags, var.tags, +<<<<<<< HEAD { "Name" = local.additional_eks_cluster_sg_name }, +======= + tomap({ "Name" = local.additional_eks_cluster_sg_name }), +>>>>>>> ddd6d64 (align with upstream) ) vpc_id = data.aws_vpc.eks_vpc.id @@ -100,6 +104,14 @@ resource "aws_security_group" "extra_cluster_sg" { cidr_blocks = concat(var.census_private_cidr, ["10.0.0.0/8"]) } + # kubectl logs + ingress { + from_port = 10250 + to_port = 10250 + protocol = "tcp" + cidr_blocks = concat(var.census_private_cidr, ["10.0.0.0/8"]) + } + egress { from_port = 0 to_port = 0