File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to this project will be documented in this file.
44
5+ ### [ 7.7.1] ( https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/compare/v7.7.0...v7.7.1 ) (2023-04-04)
6+
7+
8+ ### Bug Fixes
9+
10+ * Postgres port conditional adjustment ([ #362 ] ( https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/issues/362 ) ) ([ 980ce16] ( https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/commit/980ce164cc66d5b7ef1dca02cc64f47bc3ab4e66 ) )
11+
512## [ 7.7.0] ( https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/compare/v7.6.2...v7.7.0 ) (2023-03-06)
613
714
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ data "aws_partition" "current" {}
33locals {
44 create = var. create && var. putin_khuylo
55
6- port = coalesce (var. port , (var. engine == " aurora-postgresql" ? 5432 : 3306 ))
6+ port = coalesce (var. port , (var. engine == " aurora-postgresql" || var . engine == " postgres " ? 5432 : 3306 ))
77
88 internal_db_subnet_group_name = try (coalesce (var. db_subnet_group_name , var. name ), " " )
99 db_subnet_group_name = var. create_db_subnet_group ? try (aws_db_subnet_group. this [0 ]. name , null ) : local. internal_db_subnet_group_name
You can’t perform that action at this time.
0 commit comments