Skip to content

Commit 48b1892

Browse files
Merge pull request #25 from franco-caylent/CA-220
CA-220
2 parents 3a4d53b + f023022 commit 48b1892

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Tamr Terraform Template Repo
22

3+
## v3.1.2 - May 11th 2022
4+
* Adds idle_in_transaction_session_timeout to parameter group
5+
36
## v3.1.1 - February 16th 2022
47
* Updates version file to prevent the major upgrade to the AWS provider version 4.0.
58
* Adds new extensions to be ignored in the ".gitignore" file.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.0
1+
3.1.2

main.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ resource "aws_db_parameter_group" "rds_postgres_pg" {
1414
name = "log_min_duration_statement"
1515
value = var.param_log_min_duration_statement
1616
}
17+
18+
parameter {
19+
name = "idle_in_transaction_session_timeout"
20+
value = 0
21+
}
1722
tags = local.effective_tags
1823
}
1924

0 commit comments

Comments
 (0)