I have created the AWS API gateway with terraform. But I can't figure out how to select the Lambda Proxy integration checkbox selected with my terraform.
resource "aws_api_gateway_method" "request_method_get" {
rest_api_id = local.rest_api_id
resource_id = local.resource_id
http_method = "GET"
authorization = "CUSTOM"
authorizer_id = aws_api_gateway_authorizer.auth.id
}
I tried to include request_parameters = { "method.request.querystring.some-query-param" = true }
But it is not working.
CodePudding user response:
It is set using aws_api_gateway_integration with type of AWS_PROXY
. Check examples given in the docs.