Ultimate access to all questions.
In the context of AWS, a developer is tasked with building an application designed to be deployed on multiple EC2 instances. The deployment strategy should permit granular control over each step of the deployment process, specifically utilizing a blue-green deployment approach.
Which AWS service would facilitate this requirement?
Explanation:
AWS CodeDeploy is a deployment service that automates application deployments to Amazon EC2 instances, on-premises instances, or serverless Lambda functions. AWS CodeBuild is a fully managed continuous integration service that compiles source code, runs tests, and produces software packages that are ready to deploy.
The blue/green deployment type uses the blue/green deployment model controlled by CodeDeploy. This deployment type enables you to verify a new deployment of service before sending production traffic to it.