RDS Aurora cluster multi-AZ is not enabled Affecting RDS service in AWS


Severity

0.0
medium
0
10
Severity Framework
Snyk CCSS
Rule category
Availability/ Redundancy

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
AWS-Well-ArchitectedCSA-CCMGDPRHIPAAISO-27001NIST-800-53SOC-2
  • Snyk IDSNYK-CC-00095
  • creditSnyk Research Team

Description

An Aurora cluster in a Multi-AZ (availability zone) deployment provides enhanced availability and durability of data. When an Aurora cluster is provisioned, Amazon creates a primary DB instance and replicates the data to an Aurora replica in another availability zone.

How to fix?

Ensure that the aws_rds_cluster availability_zones field has more than one zone listed.

Example Configuration

resource "aws_rds_cluster" "example" {
  availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
  # other required fields here
}