mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Commit set of files for turning up a Docker Swarm mode cluster on Ubuntu instances on AWS Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
16 lines
438 B
HCL
16 lines
438 B
HCL
data "aws_ami" "xenial_ami" {
|
|
most_recent = true
|
|
owners = ["099720109477"]
|
|
filter {
|
|
name = "name"
|
|
values = ["*ubuntu-trusty-14*"]
|
|
}
|
|
filter {
|
|
name = "virtualization-type"
|
|
values = ["hvm"]
|
|
}
|
|
filter {
|
|
name = "root-device-type"
|
|
values = ["ebs"]
|
|
}
|
|
}
|