Ensure EBS volumes are included in a backup plan for operational phase compliance.
Rule | EBS volumes should be in a backup plan |
Framework | GxP EU Annex 11 |
Severity | ✔ High |
EBS Volumes Backup Compliance with GxP EU Annex 11
Amazon EBS (Elastic Block Store) volumes store data that can be critical for operations. Compliance with GxP EU Annex 11 requires that electronic records be backed up to ensure their availability and integrity over time. A structured and enforced backup plan is essential to meet these requirements.
Rule Description
EBS volumes should be regularly backed up to prevent data loss in line with GxP EU Annex 11, which mandates the protection of electronic records for pharmaceutical companies operating within the EU. This involves:
Troubleshooting Steps
If backups are not functioning correctly, follow these troubleshooting steps:
Necessary AWS CLI Commands and Codes
Here's how to work with EBS volume backups using the AWS CLI:
Create a Manual Snapshot:
aws ec2 create-snapshot --volume-id vol-1234567890abcdef0 --description "Backup for GxP compliance"
Automate Snapshots with Lifecycle Policies: For automating snapshots, you should consider using AWS Data Lifecycle Manager or AWS Backup. This generally involves the creation of a backup plan via AWS Management Console, not directly through the CLI. However, for scripting purposes, the
aws backup
CLI can be used.Check Snapshot Status:
aws ec2 describe-snapshots --snapshot-id snap-0123456789abcdef0
Encrypt Snapshots: When creating a new snapshot, encryption can be enabled by default if the underlying volume is encrypted.
Step by Step Guide for Remediation
To ensure your EBS volumes are backed up in compliance with GxP EU Annex 11, follow these steps:
Create an IAM Role for Backup Operations:
Secure Snapshot Creation:
Set Up AWS Backup:
Monitor and Log Backups:
Configure Retention Policies:
Document and Review Policies:
This explicit and methodical approach towards EBS backup management is key to achieving compliance with GxP EU Annex 11, maintaining data integrity and securing electronic records for pharmaceutical-related operations in the EU. Remember, the ongoing process of monitoring, documenting, and auditing is as important as the initial setup to remain compliant.