From 1f9cbb52cecf449a5ad76f984fe0dda449d924d3 Mon Sep 17 00:00:00 2001 From: jawadqur <55899496+jawadqur@users.noreply.github.com> Date: Fri, 2 Apr 2021 16:13:45 -0500 Subject: [PATCH] Revert "restrict jupyter nodes to a single az (#1558)" (#1570) This reverts commit 41ebfb9a0113ed781c9b9673cedf7f6e130e285f. --- tf_files/aws/modules/eks/cloud.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tf_files/aws/modules/eks/cloud.tf b/tf_files/aws/modules/eks/cloud.tf index b3f7a784d..bdf5cf360 100644 --- a/tf_files/aws/modules/eks/cloud.tf +++ b/tf_files/aws/modules/eks/cloud.tf @@ -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}"