A developer is configuring a standard release pipeline in AWS CodePipeline to automate deployment. The pipeline must pull source code from an AWS CodeCommit repository, run tests and compile the code using AWS CodeBuild, require a manual sign-off from the quality assurance team, and finally deploy the application to AWS Elastic Beanstalk.
Arrange the actions in the correct sequence of execution from first to last.
- 1Source action (AWS CodeCommit)
- 2Build action (AWS CodeBuild)
- 3Manual approval action
- 4Deploy action (AWS Elastic Beanstalk)
Cevap
The correct sequence of actions in the pipeline is: Source action (AWS CodeCommit), Build action (AWS CodeBuild), Manual approval action, and Deploy action (AWS Elastic Beanstalk).
AWS CodePipeline processes stages sequentially. The pipeline must first fetch the source code, compile and test it in the build phase, pause for manual verification, and finally deploy the verified package.
Adım Adım Çözüm
Anahtar Kavram
AWS CodePipeline action execution order