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


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

Is your enviroment 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-Architected CSA-CCM GDPR HIPAA ISO-27001 NIST-800-53 SOC-2
  • Snyk ID SNYK-CC-00095
  • credit Snyk 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
}