Last active
January 25, 2018 20:26
-
-
Save bradleythughes/7a4321a983e1ef52871e7f2fd41627fa to your computer and use it in GitHub Desktop.
terraform aws_ami data source
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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