Skip to content

Commit

Permalink
Revert "restrict jupyter nodes to a single az (#1558)" (#1570)
Browse files Browse the repository at this point in the history
This reverts commit 41ebfb9.
  • Loading branch information
jawadqur authored Apr 2, 2021
1 parent 204eaac commit 1f9cbb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tf_files/aws/modules/eks/cloud.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module "jupyter_pool" {
csoc_cidr = "${var.peering_cidr}"
eks_cluster_endpoint = "${aws_eks_cluster.eks_cluster.endpoint}"
eks_cluster_ca = "${aws_eks_cluster.eks_cluster.certificate_authority.0.data}"
eks_private_subnets = ["${aws_subnet.eks_private.0.id}"]
eks_private_subnets = "${aws_subnet.eks_private.*.id}"
#eks_private_subnets = "${var.single_az_for_jupyter ? aws_subnet.eks_private.id : aws_subnet.eks_private.*.id}"
control_plane_sg = "${aws_security_group.eks_control_plane_sg.id}"
default_nodepool_sg = "${aws_security_group.eks_nodes_sg.id}"
Expand Down

0 comments on commit 1f9cbb5

Please sign in to comment.