Skip to content

Instantly share code, notes, and snippets.

@vagelim
Created August 5, 2019 22:49
Show Gist options
  • Save vagelim/f67a420a93ff056be209abcfdfd0c546 to your computer and use it in GitHub Desktop.
Save vagelim/f67a420a93ff056be209abcfdfd0c546 to your computer and use it in GitHub Desktop.
latest ecs ami
data "aws_ami" "latest" {
most_recent = true
owners = ["591542846629"]
filter {
name = "name"
values = ["*amazon-ecs-optimized"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment