From a66fb9434d5a69f8b794094f8e92619e245a9e17 Mon Sep 17 00:00:00 2001 From: franco martin Date: Tue, 10 May 2022 16:22:43 -0300 Subject: [PATCH 1/2] Added idle_in_transaction_session_timeout --- main.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.tf b/main.tf index 2c81f70..d85f145 100644 --- a/main.tf +++ b/main.tf @@ -14,6 +14,11 @@ resource "aws_db_parameter_group" "rds_postgres_pg" { name = "log_min_duration_statement" value = var.param_log_min_duration_statement } + + parameter { + name = "idle_in_transaction_session_timeout" + value = 0 + } tags = local.effective_tags } From f023022af556948cfb6c6366a0071982c9864c50 Mon Sep 17 00:00:00 2001 From: franco martin Date: Wed, 11 May 2022 16:14:32 -0300 Subject: [PATCH 2/2] added version and changelog --- CHANGELOG.md | 3 +++ VERSION | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d77c68..8625400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Tamr Terraform Template Repo +## v3.1.2 - May 11th 2022 +* Adds idle_in_transaction_session_timeout to parameter group + ## v3.1.1 - February 16th 2022 * Updates version file to prevent the major upgrade to the AWS provider version 4.0. * Adds new extensions to be ignored in the ".gitignore" file. diff --git a/VERSION b/VERSION index fd2a018..ef538c2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.1.0 +3.1.2