scottslowe-learning-tools/traefik/data.tf
Scott Lowe 510e92646a
Commit initial environment for learning Traefik
Commit initial set of files for an learning environment for Traefik (includes Terraform configurations and Ansible playbooks). Not completely functional yet; Terraform configuration works but Ansible playbook still being tested.

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-09-09 08:44:51 -06:00

31 lines
788 B
HCL

data "aws_ami" "f26_atomic_ami" {
most_recent = true
filter {
name = "name"
values = ["*Fedora-Atomic-26*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
filter {
name = "root-device-type"
values = ["ebs"]
}
}
data "aws_ami" "f26_ami" {
most_recent = true
filter {
name = "name"
values = ["*Fedora-Cloud-Base-26*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
filter {
name = "root-device-type"
values = ["ebs"]
}
}