Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nivleshc/521152250da32c8fd3d282516172ccb0 to your computer and use it in GitHub Desktop.
Save nivleshc/521152250da32c8fd3d282516172ccb0 to your computer and use it in GitHub Desktop.
This gist contains code from the file api_gateway.tf which is part of the blog-photo-location-map repository.
resource "aws_api_gateway_method" "fetch_object_get" {
rest_api_id = aws_api_gateway_rest_api.photo_location_map.id
resource_id = aws_api_gateway_resource.fetch_object.id
http_method = "GET"
authorization = "NONE"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment