Created
March 23, 2025 13:21
-
-
Save nivleshc/42986670487f5b8d6b1cf2180f1d5a78 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_resource" "fetch_object" { | |
rest_api_id = aws_api_gateway_rest_api.photo_location_map.id | |
parent_id = aws_api_gateway_rest_api.photo_location_map.root_resource_id | |
path_part = local.api_gateway_fetch_object_path | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment