Commenting out subnet_ids data resource temporarily

pull/516/head
Jonathan Simon 2019-11-24 21:26:45 -08:00
parent fbcb75069e
commit b6f84a3d90
1 changed files with 7 additions and 7 deletions

View File

@ -2,13 +2,13 @@ locals {
service = "${var.prefix}-${var.name}-cp"
}
data "aws_subnet_ids" "private" {
vpc_id = "${module.vpc.vpc_id}"
tags = {
Name = "private-${var.prefix}-${var.name}"
Tier = "Private"
}
}
# data "aws_subnet_ids" "private" {
# vpc_id = "${module.vpc.vpc_id}"
# tags = {
# Name = "private-${var.prefix}-${var.name}"
# Tier = "Private"
# }
# }
data "aws_ami" "base" {
owners = ["self"]