Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created February 26, 2019 16:31
Show Gist options
  • Select an option

  • Save 100daysofdevops/1e1089338f69c6a8a625dbc44dfbffbd to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/1e1089338f69c6a8a625dbc44dfbffbd to your computer and use it in GitHub Desktop.
# To get the latest Centos7 AMI
data "aws_ami" "centos" {
owners = ["679593333241"]
most_recent = true
filter {
name = "name"
values = ["CentOS Linux 7 x86_64 HVM EBS *"]
}
filter {
name = "architecture"
values = ["x86_64"]
}
filter {
name = "root-device-type"
values = ["ebs"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment