Skip to content

Commit

Permalink
Upgraded RDS Postgresql Version Used In Integ Tests (#2547)
Browse files Browse the repository at this point in the history
Co-authored-by: AbdulRehman Faraj <[email protected]>
  • Loading branch information
AbdulR3hman and AbdulRehman Faraj authored Jan 23, 2025
1 parent ab344c5 commit 4524510
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export class RdsGenericStack extends cdk.Stack {
if (db_type == 'mysql') {
return rds.DatabaseClusterEngine.auroraMysql({version:rds.AuroraMysqlEngineVersion.VER_3_04_1});
} else if (db_type == 'postgresql') {
return rds.DatabaseClusterEngine.auroraPostgres({version:rds.AuroraPostgresEngineVersion.VER_13_7});
return rds.DatabaseClusterEngine.auroraPostgres({version:rds.AuroraPostgresEngineVersion.VER_15_4});
} else {
throw new Error("unsupported rds engine version");
}
Expand Down

0 comments on commit 4524510

Please sign in to comment.