CodePipeline: A DevSecOps Pipeline
AWS CodePipeline orchestrates our CI/CD process. It pulls our code from a S3 bucket and then uses AWS CodeBuild to build, scan and push our application container image.
- Go to AWS CodePipeline in your AWS console.

- Click on the codepipeline-ecs pipeline. This pipeline has three phases. The first phase, the Source phase, pulls the application source code from Amazon S3. The second phase is the Build phase and builds, scans and pushes our image. The third phase is the Deploy phase and deploys to ECS.

Let’s examine the Build and Deploy phases in detail.