본문 바로가기
클라우드 및 인프라/AWS

[AWS] Codepipeline The provided role does not have sufficient permissions.

by 작은소행성 2022. 6. 7.

codepipeline 에서 codedeploy를 실행하는데 다음과 같은 에러가 나오면서 codedeploy 가 진행되지 않았다. 

 

buildspec.yml 파일에 아티팩트 구문이 포함되어 있어야 한다. 

version: 0.2
artifacts:
  files:
    - '**/*'

 

 

If you change the buildspec.yml version to 0.2 then the shell keeps its settings. In version: 0.1 you get a clean shell for each command.

 

 

 

반응형