scottslowe-learning-tools/terraform/aws/asg-elb/data.tf
Scott Lowe 7842a4535a
Update formatting
Update formatting of all Terraform configurations per `terraform fmt`

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-10-18 08:59:59 -06:00

18 lines
284 B
HCL

data "aws_ami" "atomic_ami" {
most_recent = true
owners = ["410186602215"]
filter {
name = "name"
values = ["CentOS Atomic Host 7*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
}
data "aws_vpc" "default_vpc" {
default = true
}