Study CLF-C02 Shared Responsibility and Protection Boundaries: key concepts, common traps, and exam decision cues.
The shared responsibility model is one of the most-tested ideas on CLF-C02 because it prevents weak assumptions. AWS secures the cloud infrastructure it operates. Customers still secure what they run in the cloud, how they configure it, who can access it, and how their data is protected.
Shared responsibility model: Security split where AWS is responsible for security of the cloud and the customer is responsible for security in the cloud.
The exam wants you to classify whether the responsibility belongs mainly to:
| AWS typically handles | Customer typically handles |
|---|---|
| physical datacenters and hardware | data classification and protection choices |
| foundational networking and host infrastructure | identities, users, roles, and permissions |
| managed service platform layers | workload configuration |
| hypervisor and core service availability | guest OS and application controls on customer-managed compute |
The customer boundary changes depending on the service model:
flowchart LR
A["EC2"] --> B["Customer manages guest OS, patching, and application layer"]
C["RDS"] --> D["AWS manages more of the database platform layer"]
E["Lambda"] --> F["AWS manages even more of the runtime platform"]
What stays true:
| Scenario | Strongest interpretation |
|---|---|
| broken disk in the AWS datacenter | AWS responsibility |
| overly broad IAM permissions | customer responsibility |
| security group opened too widely | customer responsibility |
| physical facility redundancy | AWS responsibility |
| deciding whether sensitive data should be encrypted | customer responsibility |
| Trap | Better thinking |
|---|---|
| “Managed service means AWS handles all security.” | Managed service means AWS handles more of the platform, not all customer security choices. |
| “AWS patches the guest OS on EC2.” | Guest OS and instance-level controls are still the customer’s lane on EC2. |
| “AWS classifies customer data automatically.” | Data handling and classification remain with the customer. |
| “Once encryption is enabled, the responsibility question is finished.” | The customer still owns access, policy, and secure usage decisions. |
A company stores sensitive records in AWS and uses IAM users with permissions that are broader than necessary. Which statement is strongest?
Correct answer: 3
Why: AWS secures the underlying cloud platform, but the customer still owns identities, permissions, and data protection decisions.