mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Commit finalized Terraform configuration using CentOS and CentOS Atomic Host images for working with an SSH bastion host Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
25 lines
665 B
HCL
25 lines
665 B
HCL
data "aws_ami" "atomic_ami" {
|
|
most_recent = true
|
|
owners = ["410186602215"]
|
|
filter {
|
|
name = "name"
|
|
values = ["CentOS Atomic Host 7*"]
|
|
}
|
|
filter {
|
|
name = "virtualization-type"
|
|
values = ["hvm"]
|
|
}
|
|
}
|
|
|
|
data "aws_ami" "centos_ami" {
|
|
most_recent = true
|
|
owners = ["410186602215"]
|
|
filter {
|
|
name = "name"
|
|
values = ["CentOS Linux 7*"]
|
|
}
|
|
filter {
|
|
name = "virtualization-type"
|
|
values = ["hvm"]
|
|
}
|
|
}
|