CCSS (Common Configuration Scoring System) is a set of measures used to determine the severity of the rule.
Each rule is associated with a high-level category. For example IAM, Container, Monitoring, Logging, Network, etc.
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 applicationsAn 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.
Ensure that the aws_rds_cluster availability_zones
field has more than one zone listed.
resource "aws_rds_cluster" "example" {
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
# other required fields here
}