This rule ensures that RDS DB instance backup is enabled to maintain data resilience and availability.
Rule | RDS DB instance backup should be enabled |
Framework | Federal Financial Institutions Examination Council (FFIEC) |
Severity | ✔ Medium |
Rule Description
The rule requires that the RDS DB instance backup feature should be enabled for compliance with the Federal Financial Institutions Examination Council (FFIEC) guidelines. This ensures that proper data backup measures are in place to protect sensitive information and facilitate disaster recovery.
Troubleshooting Steps
If the RDS DB instance backup is not enabled, follow these troubleshooting steps:
Necessary Code
To enable RDS DB instance backup, use the following AWS CLI command:
aws rds modify-db-instance --db-instance-identifier <DB_INSTANCE_NAME> --backup-retention-period <RETENTION_PERIOD>
Replace
<DB_INSTANCE_NAME>
with the identifier of your RDS DB instance and <RETENTION_PERIOD>
with the desired number of days to retain backups.Step-by-Step Guide for Remediation
Follow these steps to enable RDS DB instance backup for FFIEC compliance:
By following these steps, you will enable RDS DB instance backup to comply with FFIEC guidelines. This will help ensure the availability and integrity of your data while facilitating timely recovery in the event of data loss or system failure.