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 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 }