mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
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>
31 lines
788 B
HCL
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"]
|
|
}
|
|
}
|