Severity Framework
Snyk CCSS
Rule category
IAM / Databases
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 applicationsFrameworks
CIS-Controls
CSA-CCM
HIPAA
ISO-27001
SOC-2
- Snyk ID SNYK-CC-00273
- credit Snyk Research Team
Description
IAM authentication for RDS cluster is disabled.
How to fix?
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
}