Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS CodePipeline deploy failed

I am trying to set up a Continuous Integration pipeline for my simple AWS lambda function. To confess, the is my very first time using AWS code pipeline. I am having trouble with setting up the pipeline. The deploy stage in the pipeline is failing.

I created a CodeBuild

enter image description here

Then I created an application in CodeDeploy

enter image description here

Then I created a CodePipeline choosing the source as GitHub. The selected a repository and branch from the GitHub. Then linked the pipeline with the CodeDeploy application and CodeBuild I previously created.

After I save the pipeline and when the pipeline is built, I am getting this error.

enter image description here

When I check the error details, it says this

Unable to access the artifact with Amazon S3 object key 'the-goodyard-pipelin/BuildArtif/G12YurC' located in the Amazon S3 artifact bucket 'codepipeline-us-east-1-820116794245'. The provided role does not have sufficient permissions.

Basically, that Bucket does not exist as well. Isn't the Bucket created automatically? What went wrong with my set up?

The Bucket exist as well. It is just throwing error.

In the bucket, I can see the zip file as well.

enter image description here

like image 774
Wai Yan Hein Avatar asked Nov 30 '25 10:11

Wai Yan Hein


1 Answers

Well, the error message looks self explanatory, the role you assigned to codebuild doesn't have enough access to go to s3. Go to codebuild -> Build projects - > Choose your project -> Click on tab 'Build Details'. You will see a 'Service Role' ARN, that if you click on it, it will send you to that IAM role (if you are not an admin for that account, you may not have enough permissions to see IAM, as it is a critical permission service, so check this with the admin.) Check the policies for that role, and check if the policies have the action: s3:GetObject on resource: your bucket. If it doesn't, then you need to add it. Use the visual editor, use S3 as service, add Get* as action, and your s3 bucket to it.

like image 83
Simon Ernesto Cardenas Zarate Avatar answered Dec 02 '25 03:12

Simon Ernesto Cardenas Zarate



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!