Deployment of Application Revisions using CodeDeploy | AWS Certified DevOps Engineer - Professional

Initial Steps in Deployment of Application Revisions using CodeDeploy

Prev Question Next Question

Question

Which of the following is the right sequence of initial steps in the deployment of application revisions using Code Deploy?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

Answer - C.

The below diagram from the AWS documentation shows the deployment steps.

For more information on the deployment steps, please refer to the below link:

http://docs.aws.amazon.com/codedeploy/latest/userguide/deployment-steps.html
Create application

t

Specify deployment group

t

Specify deployment configuration

t

Upload revision

{

Deploy

t

Check results

t

Redeploy as needed

The correct sequence of initial steps in the deployment of application revisions using AWS CodeDeploy is:

  1. Create a revision
  2. Create a deployment group
  3. Create an application
  4. Create a deployment configuration

Here's a more detailed explanation of each step:

  1. Create an application: In AWS CodeDeploy, an application is the top-level container that groups together all the resources related to your application deployment. You can create an application by specifying a name, an optional description, and any tags that you want to associate with it. After creating an application, you can upload application revisions to it.

  2. Create a deployment configuration: A deployment configuration specifies how the deployment process should proceed, including the number of instances to deploy to, the percentage of instances to deploy at once, and the order in which to deploy the instances. You can create a deployment configuration by specifying a name, an optional description, and the deployment rules that you want to apply.

  3. Create a revision: A revision is a version of your application that you want to deploy. It can be an archive file, such as a .zip file or a tarball, or it can be an Amazon S3 object. When you create a revision, you must specify the application to which it belongs, the revision type, and the location of the revision.

  4. Create a deployment group: A deployment group is a set of instances that you want to deploy your application to. You can create a deployment group by specifying a name, an optional description, and the instances that you want to include in the group. You can also specify deployment group settings, such as load balancer settings, auto-scaling settings, and deployment settings.

So the correct sequence of initial steps in the deployment of application revisions using AWS CodeDeploy is 3,4,1, and 2, which is option D.