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 database authentication is disabled and authentication tokens are not used to connect to DB instance. Users will connect to DB instance with passwords, which are less secure than temporary tokens that expire.
Ensure that the aws_db_instance
iam_database_authentication_enabled
field is set to true
.
Example configuration:
resource "aws_db_instance" "d" {
iam_database_authentication_enabled = true
# other required fields here
}
Set Properties.EnableIAMDatabaseAuthentication
to true
.