RDS global cluster encryption is disabled Affecting RDS service in AWS


Severity

0.0
medium
0
10
Severity Framework
Snyk CCSS
Rule category
Data/ Encryption at Rest

Is your environment affected by this misconfiguration?

In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.

Test your applications
Frameworks
CIS-AWSCIS-ControlsCSA-CCMGDPRHIPAAISO-27001NIST-800-53SOC-2
  • Snyk IDSNYK-CC-00248
  • creditSnyk Research Team

Description

RDS cluster does not have encryption at rest enabled, which means data is stored on cluster in plaintext.

How to fix?

Ensure that the storage_encrypted attribute is set to true.

Example Configuration

resource "aws_rds_global_cluster" "example" {
  storage_encrypted = true
  # other required fields here
}