Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.0
3.1.2
5 changes: 5 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down