Skip to content
Discussion options

You must be logged in to vote

I found the solution!

The bucket was encrypted due to the default pipeline configuration on cdk that is prepare to use crossacount config. If you add the parameter crossAccountKeys: false during pipeline creation it solves the problem.

// Don't create Customer Master Keys
const pipeline = new codepipeline.Pipeline(this, 'MyFirstPipeline', {
  crossAccountKeys: false,
});

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@badfun
Comment options

Answer selected by Mat-moran
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants