Question 439:
<strong>You are a new graduate and are trying to get an AWS DevOps job. To prepare for a tech interview, the recruiter has given you a task to use AWS to build up a Hello World web service in one week. </strong>
Answer options:
A.In CodePipeline, add a Source stage with CodeCommit. Add a Staging stage with CodeBuild to build the new artifact which is a RPM package or an executable file and store it in S3. Add a Deploy stage that uses CloudFormation to create a new task definition revision that points to the installation package in S3 and updates the ECS service to use the new task definition revision. B.In CodePipeline, add a Source stage with CodeCommit. Add a Build stage with CodeBuild to build a new Docker container image and store it in S3. Add a Deploy stage that uses CloudFormation to create a new ECS Cluster that points to S3 URL with the newly built Docker container image and updates the relevant ECS service. C.In CodePipeline, add a Source stage with CodeCommit. Add a Build stage with CodeBuild to build a new Docker container image and push it to ECR. Add a Deploy stage that uses CloudFormation to create a new task definition revision that points to the newly built Docker container image and updates the ECS service to use the new task definition revision. D.In CodePipeline, add a Source stage with CodeCommit. Add a Build stage with CodeBuild to build the new artifact which is a RPM package or an executable file and push it to ECR. Add a Deploy stage that uses CloudFormation to create a new task definition revision that points to the newly built Docker container image and updates the ECS service to use the new task definition revision.