It’s so convenient when you’ve implemented CI/CD to your project. You commit and push to repository and viola, in minutes it will be deployed to your instance.
I Just want to share with you guys how I did CI/CD with AWS Code Pipeline.
summary of aws code pipeline?
The instructions is simple, just enter your pipeline name.
In Step 2, you have to login and authorize aws to access your repository and pick the repository and branch of your project.
In Step 3, you have to choose which CI to integrate with, you can check other tutorial for this specific parts or my later post.
You can choose to have no CodeBuild at all by choosing no build
If you choose AWS CodeBuild it will redirect you to codebuild and will let you create one if you didn’t have any codeBuild created yet.
For Code Deploy, you have to create a CodeDeploy first. If you don’t have one yet then you will be redirected to new tab to create your CodeDeploy Project.
Choose or create a rol that have sufficient permission to access all the resources it needs.
Review All your configurations and settings if correct.
That’s all and you’re good to go.
Thanks for reading!