Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion parts/deploy-api-gateway/go/api_gateway.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ resource "aws_apigatewayv2_integration" "hello_world_lambda" {
// specify route that will be used to invoke lambda function
resource "aws_apigatewayv2_route" "hello_world_lambda" {
api_id = aws_apigatewayv2_api.simple_api.id
route_key = "api/v1/hello"
route_key = "GET /api/v1/hello"
target = "integrations/${aws_apigatewayv2_integration.hello_world_lambda.id}"
}

Expand Down