Reducing the backup retention duration can reduce an organization’s ability to re-establish service in case of a security incident.
Data backups allow to overcome corruption or unavailability of data by recovering as efficiently as possible from a security incident.
Backup retention duration, coverage, and backup locations are essential criteria regarding functional continuity.
There is a risk if you answered yes to any of those questions.
Increase the backup retention period to an amount of time sufficient enough to be able to restore service in case of an incident.
For Amazon Relational Database Service clusters and instances:
AWSTemplateFormatVersion: 2010-09-09
Resources:
relationaldatabase:
Type: 'AWS::RDS::DBInstance'
Properties:
DBName: NonCompliantDatabase
BackupRetentionPeriod: 2 # Sensitive
For Amazon Relational Database Service clusters and instances:
AWSTemplateFormatVersion: 2010-09-09
Resources:
relationaldatabase:
Type: 'AWS::RDS::DBInstance'
Properties:
DBName: CompliantDatabase
BackupRetentionPeriod: 5