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 applicationsIAM authentication for RDS cluster is disabled.
Ensure that the iam_database_authentication_enabled
attribute is set to true
.
Example configuration:
resource "aws_rds_cluster" "example" {
iam_database_authentication_enabled = true
# other required fields here
}
Set Properties.EnableIAMDatabaseAuthentication
attribute to true
.