Skip to content

Instantly share code, notes, and snippets.

@kristi
Last active March 12, 2019 23:13
Show Gist options
  • Save kristi/2957c0d24b3f3e046757cb72dbb09dff to your computer and use it in GitHub Desktop.
Save kristi/2957c0d24b3f3e046757cb72dbb09dff to your computer and use it in GitHub Desktop.
terraform - latest amazon linux 2 ami
data "aws_ami" "latest_amazon_linux_2" {
most_recent = true
filter {
name = "name"
values = ["*amzn2-ami-hvm*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
filter {
name = "architecture"
values = [ "x86_64" ]
}
owners = ["amazon"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment