Created
August 5, 2019 22:49
-
-
Save vagelim/f67a420a93ff056be209abcfdfd0c546 to your computer and use it in GitHub Desktop.
latest ecs ami
This file contains hidden or 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" "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