This rule ensures that the RDS DB instance backup feature is enabled to prevent data loss and ensure disaster recovery.
Rule | RDS DB instance backup should be enabled |
Framework | GxP EU Annex 11 |
Severity | ✔ Medium |
RDS DB Instance Backup for GxP EU Annex 11
Description
In order to comply with the requirements of GxP EU Annex 11, it is necessary to enable regular backups for your RDS (Relational Database Service) instances in AWS. The GxP EU Annex 11 guidelines ensure the integrity, reliability, and availability of electronic records and systems used in the life sciences industry. Enabling backups will help protect your data and enable recovery in the event of data loss or system failures.
Policy Details
Troubleshooting Steps
If the backups are not enabled for your RDS DB instance, follow these steps:
Configuration Code
To enable backups for RDS DB instances, use the following code:
aws rds modify-db-instance \ --db-instance-identifier <db-instance-identifier> \ --backup-retention-period <retention-period-in-days> \ --apply-immediately
Replace
<db-instance-identifier>
with the identifier of your RDS DB instance and <retention-period-in-days>
with the desired number of days for which the backups should be retained.Remediation Steps
To enable backups for your RDS DB instance in compliance with GxP EU Annex 11, follow these steps:
Conclusion
Enabling regular backups for RDS DB instances is crucial to meet the requirements of GxP EU Annex 11. Following the troubleshooting and remediation steps provided above will ensure the backup functionality is enabled to safeguard your data and comply with regulatory standards.