We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When integrating API Gateway with lambda using aws_proxy type, only the ANY method type is supported and it requires POST to work.
aws_proxy
ANY
POST
Culprit: https://github.com/pulumi/pulumi-awsx/blob/6e41506897a3d7bf3985beb8ecdc596638047699/nodejs/awsx/apigateway/api.ts#L219.
Code to reproduce below:
const lambda = new aws.lambda.CallbackFunction("mylambda", { callback: async e => { console.log("Lambda called...") } } ); let endpoint = new awsx.apigateway.API("example", { routes: [{ path: "/", target: { uri: lambda.invokeArn, type: "aws_proxy" }, }], })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When integrating API Gateway with lambda using
aws_proxy
type, only theANY
method type is supported and it requiresPOST
to work.Culprit: https://github.com/pulumi/pulumi-awsx/blob/6e41506897a3d7bf3985beb8ecdc596638047699/nodejs/awsx/apigateway/api.ts#L219.
Code to reproduce below:
The text was updated successfully, but these errors were encountered: