Skip to content

Commit

Permalink
Add extra cluster sg rule
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <noreply@github.com>
  • Loading branch information
jacobwoffenden authored Jan 21, 2025
1 parent 4631864 commit 7663e0a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions terraform/environments/analytical-platform-compute/eks-cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ module "eks" {
vpc_id = module.vpc.vpc_id
control_plane_subnet_ids = module.vpc.intra_subnets
subnet_ids = module.vpc.private_subnets
cluster_security_group_additional_rules = {
vpc = {
description = "Allow traffic from the VPC"
from_port = 0
to_port = 65535
protocol = "tcp"
type = "ingress"
cidr_blocks = [module.vpc.vpc_cidr_block]
}
}

authentication_mode = "API"
enable_cluster_creator_admin_permissions = true
Expand Down

0 comments on commit 7663e0a

Please sign in to comment.