Elastic Beanstalk answers one question on the exam: how do I deploy an application without managing the infrastructure? It is the managed-platform option, and it sits in a small cluster of compute services the exam likes to make you tell apart.
What it is
AWS Elastic Beanstalk takes your application code and runs it, automatically provisioning and managing the EC2 instances, load balancer, auto scaling and health monitoring underneath. This is Platform as a Service (PaaS): you focus on the application, and AWS operates the platform. You still retain access to the underlying resources if you need to adjust them — but you do not have to.
Where it fits among the compute options
The exam clusters four things and checks you can separate them:
- EC2 — servers you manage yourself (IaaS).
- Elastic Beanstalk — your app on a managed platform (PaaS).
- Lambda — individual functions, serverless, no platform to think about.
- CloudFormation — infrastructure as code, provisioning resources from a template.
Read the scenario for the verb: manage servers → EC2, run a function → Lambda, deploy an app fast → Beanstalk, define infrastructure → CloudFormation.
The trade-off
Beanstalk’s appeal is speed and simplicity: upload code, get a running, scaled, load-balanced environment. The trade-off is that it makes choices for you. If a question stresses needing full manual control of the OS and network, that points away from Beanstalk toward plain EC2. If it stresses deploying quickly without infrastructure work, Beanstalk is the answer.
How to use the questions below
Answer each one before you reveal the explanation, and when you miss, read past the correct letter to why the other three fail. The distractors are almost always the neighbouring compute service — EC2 where Beanstalk belongs, or Lambda described as the platform. Placing the scenario in the right compute category is the whole skill, and the reasoning below builds it.
Updated for CLF-C02 (July 2026). The sample questions above are our own work
in the style of the exam — not real exam items. The exam itself is set and marked
by the certification body.