Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Created May 10, 2020 13:20
Show Gist options
  • Select an option

  • Save PradeepLoganathan/1335d1d1ead87a49d90ddb679faf85d4 to your computer and use it in GitHub Desktop.

Select an option

Save PradeepLoganathan/1335d1d1ead87a49d90ddb679faf85d4 to your computer and use it in GitHub Desktop.
Data source aws terraform
data "aws_ami" "web" {
filter {
name = "state"
values = ["available"]
}
filter {
name = "tag:Component"
values = ["web"]
}
most_recent = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment