-
Beta Was this translation helpful? Give feedback.
Answered by
Mat-moran
Aug 3, 2022
Replies: 2 comments 1 reply
-
I found the solution! The bucket was encrypted due to the default pipeline configuration on cdk that is prepare to use // Don't create Customer Master Keys
const pipeline = new codepipeline.Pipeline(this, 'MyFirstPipeline', {
crossAccountKeys: false,
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Mat-moran
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 parametercrossAccountKeys: false
during pipeline creation it solves the problem.