[Enhancement]: aws_rds_cluster: Database Performance Insights Advanced Mode #40393
Open
Description
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
AWS CLI Attribute Flag
Documentation To Enable Advanced Insights
Affected Resource(s) and/or Data Source(s)
aws_rds_cluster
Potential Terraform Configuration
# 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