Continuous Integration and Delivery pipeline using Bitbucket, AWS CodeBuild, AWS CodePipline and AWS CodeDeploy - Part 2
In the previous post we looked at how to configure AWS Codebuild for CI/CD pipeline. In this post we will look at configuring AWS CodeDeploy. First Let's see what is CodeDeploy. According to Amazon Web Services website, AWS CodeDeploy is a fully managed deployment service that automates software deployments to compute services such as Amazon EC2, AWS Lambda, and your on-premises servers. So now let's see how we can set up AWS CodeDeploy. Once you login to your AWS account, go to AWS CodeDeploy and click on "Create Application". You need to first provide Application name (such as "MyFirstDeployment") and choose your compute platform (EC2, AWS Lambda, Amazon ECS). Here we will choose EC2 Instance as our comput platform. Then click "Create Application". Once the application is created you must create a deployment group. You can have multiple deployment group per application. Deployment group allows to have different deployment sett...