From 306f577fb9f88981d2e083ba0fb07e951a1c93d3 Mon Sep 17 00:00:00 2001 From: Jonathan Simon Date: Sun, 24 Nov 2019 21:13:07 -0800 Subject: [PATCH] bypassing subnets --- terraform/aws/control-plane.tf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/terraform/aws/control-plane.tf b/terraform/aws/control-plane.tf index c9a6ce3..0b128d2 100644 --- a/terraform/aws/control-plane.tf +++ b/terraform/aws/control-plane.tf @@ -2,12 +2,12 @@ locals { service = "${var.prefix}-${var.name}-cp" } -data "aws_subnet_ids" "private" { - vpc_id = "${module.vpc.vpc_id}" - tags = { - Tier = "Private" - } -} +# data "aws_subnet_ids" "private" { +# vpc_id = "${module.vpc.vpc_id}" +# tags = { +# Tier = "Private" +# } +# } data "aws_ami" "base" { owners = ["self"]