Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

closes #312 Allow access to EKS cluster from MWAA security group #399

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions schedulers/terraform/managed-airflow-mwaa/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,14 @@ module "eks" {
source_node_security_group = true
}

# MWAA needs access to the EKS control plane in order to submit a job
allow_access_from_mwaa = {
description = "Nodes on ephemeral ports"
description = "Access from MWAA"
protocol = "tcp"
from_port = 1025
to_port = 65535
from_port = 443
to_port = 443
type = "ingress"
cidr_blocks = [local.vpc_cidr]
source_security_group_id = module.mwaa.mwaa_security_group_id
}
}

Expand Down
Loading