Hi
@broad-dog-22463, thank you for the link, I have been reading these articles for the last few days. I can even click the application in the AWS console, but I can't programing pulumi correctly to create what I want.
Specifically, I don't know how to connect websocket api with integration now. I'm trying something similar:
new aws.apigatewayv2.Integration ('lambdaDefaultIntegration', {
apiId: apigw.id,
integrationType: 'AWS',
integrationUri: lambda.arn
});
But it doesn't work at all (it doesn't even go deploy, it ends in Invalid function ARN or invalid uri)
But when I try this
new aws.apigatewayv2.Integration ('lambdaDefaultIntegration'), {
apiId: apigw.id,
integrationType: 'AWS_PROXY',
integrationUri: lambda.arn
});
deploy will work, but I don't see the link between integration and lambda in the AWS console (you can see in image).