Skip to content

Instantly share code, notes, and snippets.

@halfb00t
Created December 29, 2017 11:18
Show Gist options
  • Select an option

  • Save halfb00t/0e392c9d51fa20bca6c36455e976e745 to your computer and use it in GitHub Desktop.

Select an option

Save halfb00t/0e392c9d51fa20bca6c36455e976e745 to your computer and use it in GitHub Desktop.
data "aws_ami" "main" {
most_recent = true
filter {
name = "name"
values = ["amzn-ami-*-x86_64-gp2"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
filter {
name = "owner-alias"
values = ["amazon"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment