Skip to content

Instantly share code, notes, and snippets.

@Mirch
Created January 25, 2022 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mirch/b0a9cc982827ae6481cfa34e940bf6fc to your computer and use it in GitHub Desktop.
Save Mirch/b0a9cc982827ae6481cfa34e940bf6fc to your computer and use it in GitHub Desktop.
resource "aws_apigatewayv2_route" "get_user_route" {
api_id = aws_apigatewayv2_api.users_api.id
route_key = "GET /users"
target = "integrations/${aws_apigatewayv2_integration.get_user_integration.id}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment