Day 53: CI/CD pipeline on AWS - Part 4 🚀 ☁
Task: Create a CodePipeline that gets the code from CodeCommit, Builds the code using CodeBuild and deploys it to a Deployment Group.
Continuing from Part 3, we will delve deeper into building an efficient CI/CD pipeline on AWS. Our focus in Part 4 is on leveraging CodeCommit, CodeBuild, and CodeDeploy to streamline code retrieval, building, and deployment processes.
Let's Get Started:
- Navigate to CodePipeline and select "Create Pipeline."

- Provide a name for your pipeline and create a new service role. Proceed to the next step.

- Choose AWS CodeCommit as the source provider and specify the repository name and branch. Opt for AWS CodePipeline as the change detection option. Click next.

- Select AWS CodeBuild as the build provider. Choose the project name created earlier. Proceed to the next step.

- Choose AWS CodeDeploy as the deployment provider. Specify the application name and deployment group previously created.

- Click on "Create Pipeline" to complete the pipeline setup process.
If everything is set up correctly, your application will be deployed successfully.

Whenever changes are made to your code, the pipeline will be automatically triggered, ensuring seamless and efficient deployments.

If you have any queries/suggestions please write in comment. See you another day with another challenge.



