Adding the subnet_ids data resource back in.

pull/516/head
Jonathan Simon 2019-11-24 21:29:25 -08:00
parent b6f84a3d90
commit eedc52d2f6
1 changed files with 6 additions and 7 deletions

View File

@ -2,13 +2,12 @@ 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 = {
Tier = "Private"
}
}
data "aws_ami" "base" {
owners = ["self"]