Cristian Marin

Results 4 comments of Cristian Marin

I managed to make it work. I hope is related to this and useful to anybody: https://github.com/aws-cloudformation/cfn-lint/issues/1657#issuecomment-1303868356

The same happened to us. Just updating our template adding a few endpoints. > ``` > Events: > Proxy: > Type: Api > Properties: > Path: /{proxy+} > Method: GET...

@Jun711 That's exactly what I'm talking about! Thank you very much!!! I just updated my CF template with this: ```yaml ApiGatewayInvokeLambdaPermission: Type: AWS::Lambda::Permission Properties: Action: lambda:InvokeFunction FunctionName: !GetAtt LAMBDA.Arn Principal:...