mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Move all files from 'aws-tf-ansible' to 'aws-tf-traefik' to reflect removal of Ansible from the environment (due to CoreOS switch) Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
33 lines
878 B
HCL
33 lines
878 B
HCL
data "aws_ami" "worker_ami" {
|
|
most_recent = true
|
|
owners = ["595879546273"]
|
|
filter {
|
|
name = "name"
|
|
values = ["*CoreOS-stable*"]
|
|
}
|
|
filter {
|
|
name = "virtualization-type"
|
|
values = ["hvm"]
|
|
}
|
|
filter {
|
|
name = "root-device-type"
|
|
values = ["ebs"]
|
|
}
|
|
}
|
|
|
|
data "aws_ami" "manager_ami" {
|
|
most_recent = true
|
|
owners = ["099720109477"]
|
|
filter {
|
|
name = "name"
|
|
values = ["*ubuntu-xenial-16.04*"]
|
|
}
|
|
filter {
|
|
name = "virtualization-type"
|
|
values = ["hvm"]
|
|
}
|
|
filter {
|
|
name = "root-device-type"
|
|
values = ["ebs"]
|
|
}
|
|
}
|