From 683728cab3688574d220d708db2a775bdacb7e35 Mon Sep 17 00:00:00 2001 From: shanice-skylight Date: Fri, 18 Oct 2024 12:24:07 -0400 Subject: [PATCH] modified enabled_cloudwatch_logs_exports --- terraform/aws/implementation/modules/rds/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/aws/implementation/modules/rds/main.tf b/terraform/aws/implementation/modules/rds/main.tf index 55dfdb89..5fe03877 100644 --- a/terraform/aws/implementation/modules/rds/main.tf +++ b/terraform/aws/implementation/modules/rds/main.tf @@ -6,7 +6,7 @@ resource "aws_db_instance" "tefca-viewer-db" { allocated_storage = 5 engine = var.engine_type engine_version = var.engine_version - enabled_cloudwatch_logs_exports = "postgresql" + enabled_cloudwatch_logs_exports = ["postgresql"] username = var.db_username password = random_password.setup_rds_password.result db_subnet_group_name = aws_db_subnet_group.this.name