maximedemarey-wb
maximedemarey-wb
Any news on this issue ? I'm facing same problem with AWS toolkit 1.95 / macOS Ventura
When I generate the debug launch config from template.yml, execution of the lambda is ok (but doesn't hit breakpoints) ``` { "configurations": [ { "type": "aws-sam", "request": "direct-invoke", "name": "test-debug:HelloWorldFunction",...
I just found a clue, the problem only seems to be present when the s3 bucket is created in a CDK stack different from the cloudfrontToS3 stack
it is shared via a parameter in the cloufront stack constructor : ``` const deployS3BucketStack = new DeployBucketStack( ... ); new CloudFrontStack(app, `CloudFrontStack`, { ... s3Bucket: deployS3BucketStack.s3Bucket, }); ```
I do not use NestedStack but Stack : app.ts ``` const app = new cdk.App(); const deployS3BucketStack = new DeployBucketStack( app, `DeployBucketStack`, { ... } ); new CloudFrontStack(app, `CloudFrontStack `,...