Skip to content

Instantly share code, notes, and snippets.

@bradleythughes
Last active January 25, 2018 20:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradleythughes/7a4321a983e1ef52871e7f2fd41627fa to your computer and use it in GitHub Desktop.
Save bradleythughes/7a4321a983e1ef52871e7f2fd41627fa to your computer and use it in GitHub Desktop.
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