A systems administrator is troubleshooting an SAP HANA database that runs on an EC2 instance. The exhibit shows the block device mappings of the EC2 instance. The administrator needs to ensure that the data volumes (/dev/sdf and /dev/sdg) are not accidentally terminated when the instance is terminated. However, the administrator also wants to take a nightly snapshot of these volumes using AWS Backup. Which of the following is a potential issue with the current configuration?
AWS Backup typically uses tags to identify resources.
Why this answer
Option D is correct because AWS Backup uses resource tags to identify which resources to include in backup plans. If the volumes /dev/sdf and /dev/sdg are not tagged with the appropriate key-value pairs that match the backup plan's tag-based selection criteria, AWS Backup will not automatically discover and include them in nightly snapshots. This can lead to missing backups for critical SAP HANA data volumes.
Exam trap
The trap here is that candidates may overlook AWS Backup's tag-based resource selection and assume that all attached volumes are automatically backed up, or they may confuse DeleteOnTermination behavior with backup inclusion logic.
How to eliminate wrong answers
Option A is wrong because setting DeleteOnTermination to false is the correct configuration to prevent accidental termination of the volumes when the EC2 instance is terminated; it does not cause data persistence issues—it ensures the volumes persist independently. Option B is wrong because /dev/sdf and /dev/sdg are not reserved for NVMe instance storage; NVMe instance store volumes use device names like /dev/nvme0n1, and EBS volumes can be attached using /dev/sd* or /dev/xvd* names. Option C is wrong because EBS volumes can be snapshotted while attached to a running instance; AWS Backup and the EBS Snapshot API support creating snapshots of in-use volumes, though a brief filesystem freeze is recommended for consistency.