Creating a pipeline
In this section, we are going to create an end-to-end pipeline for our aws-code-pipeline microservice, which we developed in previous chapters. We will create a multistage pipeline. The following diagram shows the different stages of the pipeline. Let’s understand in detail what we will be doing at each stage:
Figure 11.4 – The aws-code-pipeline microservice pipeline stages
The source stage
At the source stage, we integrate AWS CodePipeline to our CodeCommit repository, aws-code-pipeline, which we created in Chapter 5. If you don’t have the CodeCommit repository, please follow the instructions and push the source code to the repository for further steps. You can download the source code from the GitHub repository here: https://github.com/PacktPublishing/Building-and-Delivering-Microservices-on-AWS/tree/main/chapter_11.
This stage checks out the source code from the CodeCommit repository and makes it available...