A healthcare startup needs to ensure that their Bedrock-based AI application is HIPAA compliant. What is the mandatory step for the data storage layer?
Trap 1: Store all data in-memory only to avoid persistent storage risks.
This does not provide durability or meet the auditability requirements of HIPAA.
Trap 2: Use public S3 buckets with ACLs enabled.
Public buckets are a security risk and violate HIPAA compliance.
Trap 3: Disable logging to prevent sensitive data from appearing in logs.
Auditing and logging are mandatory for HIPAA compliance.
- A
Store all data in-memory only to avoid persistent storage risks.
Why wrong: This does not provide durability or meet the auditability requirements of HIPAA.
- B
Use public S3 buckets with ACLs enabled.
Why wrong: Public buckets are a security risk and violate HIPAA compliance.
- C
Disable logging to prevent sensitive data from appearing in logs.
Why wrong: Auditing and logging are mandatory for HIPAA compliance.
- D
Enable server-side encryption with AWS managed keys on the S3 bucket containing the source data.
Encryption at rest is a fundamental requirement for HIPAA compliance in AWS.