Skip to content

Instantly share code, notes, and snippets.

@bradleythughes
Last active January 25, 2018 20:26
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
terraform aws_ami data source
data "aws_ami" "freebsd" {
provider = "aws.${var.aws_region}"
filter {
name = "name"
values = ["FreeBSD 11.1-RELEASE-amd64"]
}
filter {
name = "architecture"
values = ["x86_64"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment