Skip to content

Instantly share code, notes, and snippets.

@hernandesbsousa
Created February 6, 2017 18:43
Show Gist options
  • Save hernandesbsousa/b7cc5684344036824db9330fa42e50cd to your computer and use it in GitHub Desktop.
Save hernandesbsousa/b7cc5684344036824db9330fa42e50cd to your computer and use it in GitHub Desktop.
Terraform - get latest Debian Image
data "aws_ami" "debian" {
most_recent = true
filter {
name = "name"
values = ["debian-jessie-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
owners = ["379101102735"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment