scottslowe-learning-tools/terraform-aws/new-vpc/data.tf
Scott S. Lowe b12b263e77 Add Terraform configurations for creating a new VPC
Add Terraform configuration files for launching an instance in a new VPC on a new subnet, with a new Internet gateway, new route table, and new route table association (all required when creating a new VPC).

Signed-off-by: Scott S. Lowe <scott.lowe@scottlowe.org>
2016-11-09 01:38:43 -07:00

18 lines
456 B
HCL

data "aws_ami" "coreos_stable" {
filter {
name = "root-device-type"
values = ["ebs"]
}
filter {
name = "architecture"
values = ["x86_64"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
filter {
name = "name"
values = ["*1185.3.0*"]
}
}