From 0d1c8842696fd74911100729b3af81d087585ad4 Mon Sep 17 00:00:00 2001 From: Scott Sickles Date: Mon, 29 Apr 2024 09:35:17 -0400 Subject: [PATCH] turn on performance insights --- db.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/db.tf b/db.tf index 9e5bb8b..6e0343b 100644 --- a/db.tf +++ b/db.tf @@ -5,6 +5,8 @@ resource "aws_rds_cluster_instance" "cluster_instances" { instance_class = var.instance_class engine = aws_rds_cluster.this.engine engine_version = aws_rds_cluster.this.engine_version + + performance_insights_enabled = true } resource "aws_rds_cluster" "this" {