Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nivleshc/c3286a9247437d5685b1d00e03347293 to your computer and use it in GitHub Desktop.
Save nivleshc/c3286a9247437d5685b1d00e03347293 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_rest_api" "photo_location_map" {
name = "${local.api_gateway_rest_api_name_prefix}-api-gw"
description = "API Gateway to front lambdas used to plot photo locations on a map"
endpoint_configuration {
types = ["REGIONAL"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment