Skip to content

Commit

Permalink
align with upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Apr 3, 2025
1 parent 1396d20 commit 7103600
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions security_groups.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 7103600

Please sign in to comment.