-
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(pipelines): unable to add assets stage to existing VPC pipeline #15401
Conversation
The VPC Policy for the asset publishing roles is created as a separate policy, which is guaranteed to be created after the role, but not necessarily before it's needed. CodeBuild -- at CloudFormation deploy time -- actually verifies the roles have appropriate permissions, leading to a potential race condition and failure if VPC permissions are not present when the CodeBuild jobs are created. Add an explicit dependency on the separate policy to guarantee creation order during deployment. fixes #14343
Thank you for contributing! Your pull request will be updated from master 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 master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
…ws#15401) The VPC Policy for the asset publishing roles is created as a separate policy, which is guaranteed to be created after the role, but not necessarily before it's needed. CodeBuild -- at CloudFormation deploy time -- actually verifies the roles have appropriate permissions, leading to a potential race condition and failure if VPC permissions are not present when the CodeBuild jobs are created. Add an explicit dependency on the separate policy to guarantee creation order during deployment. fixes aws#14343 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
…ws#15401) The VPC Policy for the asset publishing roles is created as a separate policy, which is guaranteed to be created after the role, but not necessarily before it's needed. CodeBuild -- at CloudFormation deploy time -- actually verifies the roles have appropriate permissions, leading to a potential race condition and failure if VPC permissions are not present when the CodeBuild jobs are created. Add an explicit dependency on the separate policy to guarantee creation order during deployment. fixes aws#14343 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
The VPC Policy for the asset publishing roles is created as a separate policy,
which is guaranteed to be created after the role, but not necessarily before
it's needed. CodeBuild -- at CloudFormation deploy time -- actually verifies the
roles have appropriate permissions, leading to a potential race condition and
failure if VPC permissions are not present when the CodeBuild jobs are created.
Add an explicit dependency on the separate policy to guarantee creation order
during deployment.
fixes #14343
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license