mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 21:09:34 +01:00
20 lines
322 B
HCL
20 lines
322 B
HCL
data "aws_ami" "fedora" {
|
|
most_recent = true
|
|
owners = ["125523088429"]
|
|
|
|
filter {
|
|
name = "architecture"
|
|
values = ["x86_64"]
|
|
}
|
|
|
|
filter {
|
|
name = "virtualization-type"
|
|
values = ["hvm"]
|
|
}
|
|
|
|
filter {
|
|
name = "name"
|
|
values = ["Fedora-AtomicHost-28-20180625.1.x86_64-*-gp2-*"]
|
|
}
|
|
}
|