This rule ensures RDS DB instance encryption at rest is enabled for data security.
Rule | RDS DB instance encryption at rest should be enabled |
Framework | HIPAA |
Severity | ✔ Low |
RDS DB Instance Encryption at Rest for HIPAA Compliance
Description
In order to meet the security requirements outlined by the Health Insurance Portability and Accountability Act (HIPAA), it is necessary to enable encryption at rest for your Amazon Relational Database Service (RDS) instances. Encryption at rest ensures that the data stored in your RDS databases remains secure and protected from unauthorized access, helping to maintain the confidentiality and integrity of sensitive healthcare information.
Troubleshooting Steps
If you encounter any issues while enabling encryption at rest for your RDS DB instance, please follow these troubleshooting steps:
Necessary Codes (if applicable)
If you need to specify encryption for your RDS DB instance in code, you can use the following snippet as a reference:
import boto3 client = boto3.client('rds') response = client.modify_db_instance( DBInstanceIdentifier='your-db-instance-id', StorageEncrypted=True )
Step-by-Step Guide for Remediation