Skip to content

Instantly share code, notes, and snippets.

@BastienM
Created December 28, 2020 12:36
Show Gist options
  • Save BastienM/bced571519c7e1a36fb11b9943d544ad to your computer and use it in GitHub Desktop.
Save BastienM/bced571519c7e1a36fb11b9943d544ad to your computer and use it in GitHub Desktop.
# if you are using AWS
data "aws_ami" "myapp" {
owners = [ "self" ]
name = "myapp"
filter {
name = "tag:Version"
values = [ "v1.0" ]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment