Ensure Amazon RDS clusters and instances have AWS IAM authentication enabled

Error: IAM authentication for Amazon RDS clusters is disabled

Bridgecrew Policy ID: BC_AWS_IAM_59
Checkov Check ID: CKV_AWS_128
Severity: LOW

IAM authentication for Amazon RDS clusters is disabled

Description

TBA. Identity and Access Management (IAM)

Fix - Buildtime

Terraform

  • Resource: aws_rds_cluster
  • Argument: iam_database_authentication_enabled
resource "aws_rds_cluster" "default" {
  cluster_identifier      = "aurora-cluster-demo"
	...
+  iam_database_authentication_enabled = true
}