Created
March 23, 2025 13:11
-
-
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.
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
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