Dimitrios Kanidis
Dimitrios Kanidis
I take it this does not apply if the two cross-region stacks are deployed through separate CDK apps ?
Have the exact same issue in a very similar setup. I am however setting the Artifacts target bucket in `aws-codepipeline.Pipeline` ``` this.deployPipeline = new Pipeline(this, 'Pipeline', { artifactBucket: artifactsS3, });...
Solved my issue. I'll try to elaborate on what led me to the decision that fixed it. _TLDR_ I redeployed both the Lambda stack and the Pipeline stack. (The Lambda...