Ensure all EBS volumes are included in a backup plan for system operations.
Rule | EBS volumes should be in a backup plan |
Framework | SOC 2 |
Severity | ✔ High |
Description
The EBS volumes should be included in a backup plan as part of the SOC 2 compliance requirements. SOC 2 is an auditing standard that evaluates an organization's information security controls and processes. It ensures that specific criteria related to data protection, security, and availability are met. By including EBS volumes in a backup plan, organizations can ensure data integrity, high availability, and effective disaster recovery capabilities.
Troubleshooting Steps
If there are any issues related to configuring EBS volumes in a backup plan for SOC 2, the following troubleshooting steps can be followed:
Necessary Codes
There are no specific codes required for this particular rule/policy. However, the following AWS CLI command can be used to enable automated backups for EBS volumes:
aws ec2 create-backup-plan --backup-plan-name "MyBackupPlan" --resource-arns "arn:aws:ec2:region:account-id:volume/volume-id" --schedule-expression "cron(0 10 * * ? *)" --lifecycle "399384cd-fc04-4f77-8bda-0a6758f56a1e" --start-window-minutes 480
This command creates a backup plan named "MyBackupPlan" that backs up the specified EBS volume using a cron expression schedule. Modify
region
, account-id
, and volume-id
to match your specific environment and volume details.Step-by-Step Guide for Remediation
By following these steps, organizations can ensure that their EBS volumes are included in a backup plan, meeting the backup and disaster recovery requirements of SOC 2 compliance.