Ensure EBS volumes are included in a backup plan to meet compliance standards.
Rule | EBS volumes should be in a backup plan |
Framework | NIST 800-171 Revision 2 |
Severity | ✔ High |
Rule Description
According to NIST 800-171 Revision 2, EBS (Elastic Block Store) volumes should be included in a proper backup plan. This ensures the protection and availability of essential data stored within the volumes. Backup plans serve as a crucial safeguard against data loss, corruption, or accidental deletion.
Troubleshooting Steps
If there are any issues or concerns related to the backup plan for EBS volumes, the following troubleshooting steps can be undertaken to resolve them:
Necessary Codes
Some necessary codes may be required for configuring a backup plan for EBS volumes. These codes might vary depending on the backup solution being used. Here is an example using the AWS Command Line Interface (CLI) for setting up a backup plan:
aws backup create-backup-plan --backup-plan-name <backup_plan_name> --backup-plan-rule '{"RuleName": "<rule_name>", "TargetBackupVaultName": "<backup_vault_name>", "ScheduleExpression": "<cron_expression>"}'
In the above code:
<backup_plan_name>
should be replaced with the desired name for the backup plan.<rule_name>
should be replaced with an appropriate name for the backup rule.<backup_vault_name>
should be replaced with the name of the backup vault where the backups will be stored.<cron_expression>
should be replaced with a valid cron expression to define the backup schedule.Step-by-Step Guide for Remediation
To ensure compliance with the NIST 800-171 Revision 2 rule regarding EBS volume backups, follow these step-by-step instructions:
By following these steps, you can establish a backup plan for EBS volumes in compliance with NIST 800-171 Revision 2. Make sure to document the backup plan details and regularly review its effectiveness to adapt to any changes in your environment.