SAP-C02 · Question #587
A company's compliance audit reveals that some Amazon Elastic Block Store (Amazon EBS) volumes that were created in an AWS account were not encrypted. A solutions architect must implement a solution…
The correct answer is D. Turn on EBS encryption by default in all AWS Regions. The requirement is to ensure all new Amazon EBS volumes are encrypted at rest with the least possible effort to meet compliance, following an audit revealing unencrypted volumes.
Question
A company's compliance audit reveals that some Amazon Elastic Block Store (Amazon EBS) volumes that were created in an AWS account were not encrypted. A solutions architect must implement a solution to encrypt all new EBS volumes at rest. Which solution will meet this requirement with the LEAST effort?
Options
- ACreate an Amazon EventBridge rule to detect the creation of unencrypted EBS volumes. Invoke
- BUse AWS Audit Manager with data encryption.
- CCreate an AWS Config rule to detect the creation of a new EBS volume. Encrypt the volume by
- DTurn on EBS encryption by default in all AWS Regions.
How the community answered
(20 responses)- A5% (1)
- C5% (1)
- D90% (18)
Why each option
The requirement is to ensure all *new* Amazon EBS volumes are encrypted at rest with the least possible effort to meet compliance, following an audit revealing unencrypted volumes.
Creating an Amazon EventBridge rule to detect unencrypted volumes and invoking a Lambda function to encrypt them is a reactive solution that requires custom code and maintenance, incurring more effort than simply enabling the default setting.
AWS Audit Manager helps automate auditing and compliance checks but does not actively implement encryption for newly created EBS volumes; it's a reporting and assessment tool.
An AWS Config rule can detect non-compliant (unencrypted) EBS volumes after creation, but to encrypt them would still require a remediation action, which adds more operational overhead than a default setting.
Turning on EBS encryption by default in all AWS Regions is the most straightforward and least effort solution. Once enabled, all new EBS volumes and snapshot copies created in that Region will be automatically encrypted, proactively meeting the compliance requirement without any additional reactive measures.
Concept tested: EBS Encryption by Default
Source: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#encryption-by-default
Community Discussion
No community discussion yet for this question.