Skip to content

Instantly share code, notes, and snippets.

@Mirch
Created January 25, 2022 20:35
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/79c00fb8ad0180119937cac24fb94366 to your computer and use it in GitHub Desktop.
Save Mirch/79c00fb8ad0180119937cac24fb94366 to your computer and use it in GitHub Desktop.
resource "aws_apigatewayv2_integration" "get_user_integration" {
api_id = aws_apigatewayv2_api.users_api.id
integration_type = "AWS_PROXY"
connection_type = "INTERNET"
description = "Get User"
integration_method = "POST"
integration_uri = aws_lambda_function.get_user_lambda.invoke_arn
payload_format_version = "2.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment