This rule ensures that RDS snapshots do not allow public access, critical for data security.
Rule | RDS snapshots should prohibit public access |
Framework | GxP 21 CFR Part 11 |
Severity | ✔ Critical |
Rule Description:
This rule ensures that snapshots of Amazon RDS (Relational Database Service) instances in the AWS (Amazon Web Services) environment comply with the requirements of GxP (Good Practices) as specified in 21 CFR Part 11 regulations. Specifically, it prohibits public access to RDS snapshots, which may contain sensitive and regulated data.
Troubleshooting Steps:
Necessary Codes:
(Note: These code examples assume the AWS Command Line Interface (CLI) is being used.)
To verify the public accessibility status of an RDS snapshot:
aws rds describe-db-snapshots --db-snapshot-identifier <snapshot-identifier>
To modify the public accessibility of an RDS snapshot to false:
aws rds modify-db-snapshot-attribute --db-snapshot-identifier <snapshot-identifier> --no-publicly-accessible
Remediation Steps:
(Note: These steps assume the AWS Management Console is being used.)
Additional Notes: