Skip to content

Commit

Permalink
Update postgreSQL version to 13.7 (awslabs#1585)
Browse files Browse the repository at this point in the history
  • Loading branch information
ejeffrli authored Nov 16, 2023
1 parent 6a81882 commit 26a7f04
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export class RdsGenericStack extends cdk.Stack {
if (db_type == 'mysql') {
return rds.DatabaseClusterEngine.auroraMysql({version:rds.AuroraMysqlEngineVersion.VER_3_01_0});
} else if (db_type == 'postgresql') {
return rds.DatabaseClusterEngine.auroraPostgres({version:rds.AuroraPostgresEngineVersion.VER_13_4});
return rds.DatabaseClusterEngine.auroraPostgres({version:rds.AuroraPostgresEngineVersion.VER_13_7});
} else {
throw new Error("unsupported rds engine version");
}
Expand Down

0 comments on commit 26a7f04

Please sign in to comment.