AWS Certified DevOps Engineer - Professional

2 minute read

AWS CSA


I recently approved the AWS Certified DevOps Engineer - Professional certification and wanted to leave my comments on the exam:

It was 80 questions to answer in 170 minutes. This exam is the most difficult because you need to know about the previous contents of Developer and SysOps certifications. You generally need to know AWS technology and when to use it from the DevOps perspective for deploying applications on AWS. In particular, the key topics here are CloudFormation, OpsWorks, Elastic Beanstalk and Auto Scaling Groups.

CloudFormation

At a minimum, you should know how a CloudFormation template is composed, how to update a stack, how to prevent it from being updated, difference between WaitCondition and Creation Policy, how to rolling update ASGs, resource types.

OpsWorks

Here you should be clear about the concepts of Stack, Layer, and Application. Knowing what Lyfecyles events are and how or when they run. It is of the utmost importance to know the “deployment” command and to note that it is not only useful for deploying applications. It’s also important to remember that with OpsWorks you can add existing infrastructure to stacks (which you can’t do in CloudFormation or Elastic Beanstalk) and that you can only associate one RDS instance per stack.

Elastic Beanstalk

Understand the use cases of the service, remember that you can use Docker in EB, so you can practically run anything in containers. Learn how to create settings from the .ebextenstions, as well as how to save settings and precedence between different ways to do so. Important that you know the types of deployment that you can perform with EB, and in particular that it is one of those that allows you to make Blue/Green deployments integrated into the service, but that on the contrary you must use Route 53 if you want to make an A/B deployment.

Auto Scaling Groups

Regarding Auto Scaling Groups you should know the Termination policies, and which ones are useful for deploying applications. Studies Lifecycle Hooks and in particular all states through which an instance passes, and use cases when it is in pending: wait and terminating: wait.

The remaining

The rest of the exam focuses on evaluating your knowledge of deployment types on AWS, as well as topics for Developer and SysOps certifications, such as DynamoDB or CloudWatch.

My tips for saving time on this exam are:

  • Answer the easy question quick, don’t stay long thinking whether is right answer because probably it is.
  • Only mark for review those question where you really have a doubt, so you can check them later and if there’s time left be able to review them all.
  • Think it is a Amazon certification and in that matter always wonder what Amazon service to use.
  • Take into account that it’s a Amazon certification and in that matter always think what Amazon service to use.
  • Discard things that can be done at the OS level if an Amazon service provides it, and only consider it when there is no other option.
  • Whenever you read scalable think of SQS / DynamoDB, cost-saving = S3 / S3 RRS, and so on.

If you are interested in this certification and I recommend you some links:

Online courses

Documentación de AWS

Tags:

Categories:

Updated:

Leave a Comment