-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
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
fix(core): crossRegionReferences doesn't work when exporting to multiple regions #25190
Conversation
multiple regions The cross region export writer was only being given permissions to the first region it would export to. Fixing this by adding each consuming region to the IAM policy. fixes #24464
...ib/core/lib/custom-resource-provider/cross-region-export-providers/export-writer-provider.ts
Outdated
Show resolved
Hide resolved
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
…25384) The first attempt to fix this in #25190 didn't work because it didn't account for the fact that when exporting to multiple regions, we create multiple `ExportWriter`s that all use the same provider (and provider role). This PR fixes that by adding the policy cross region ARNs directly to the custom resource provider (1 per stack) rather than the `ExportWriter` (multiple per stack). I also updated the test case to better account for this scenario. fixes #25377 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
is this fix live in the node aws-cdk library? I ran into this bug but I'm still on aws-cdk 2.60.0 (build 2d40d77). Does this PR being merged mean that it was released? |
yep, it was released in |
@corymhall my hero! thx |
The cross region export writer was only being given permissions to the first region it would export to. Fixing this by adding each consuming region to the IAM policy.
fixes #24464
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license