### Description AWS has announced general availability for RDS performance insights with a new option to enable advanced insights mode. > AWS announces the general availability of Amazon CloudWatch Database Insights with support for Amazon Aurora PostgreSQL and Amazon Aurora MySQL. Database Insights is a database observability solution that provides a curated experience designed for DevOps engineers, application developers, and database administrators (DBAs) to expedite database troubleshooting and gain a holistic view into their database fleet health. [Announcement](https://aws.amazon.com/about-aws/whats-new/2024/12/amazon-cloudwatch-database-insights/) [AWS CLI Attribute Flag](https://awscli.amazonaws.com/v2/documentation/api/2.22.8/reference/rds/modify-db-cluster.html#:~:text=DB%20clusters%20only-,%2D%2Ddatabase%2Dinsights%2Dmode,-(string)) [Documentation To Enable Advanced Insights](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_DatabaseInsights.TurningOnAdvanced.html) ### Affected Resource(s) and/or Data Source(s) aws_rds_cluster ### Potential Terraform Configuration ```terraform # before resource "aws_rds_cluster" "example" { cluster_identifier = "example" performance_insights_enabled = true ... } # after resource "aws_rds_cluster" "example" { cluster_identifier = "example" performance_insights_enabled = true ... performance_insights_mode = "advanced" } ``` ### References _No response_ ### Would you like to implement a fix? None