Skip to content

Commit

Permalink
Upgrade mysql version (#1935)
Browse files Browse the repository at this point in the history
  • Loading branch information
ejeffrli authored Apr 23, 2024
1 parent 8e259f3 commit 44c1398
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export class RdsGenericStack extends cdk.Stack {
// for some reason, I can't just pass the below in as a property. So we have to just keep
// a switch here until that's resolved.
if (db_type == 'mysql') {
return rds.DatabaseClusterEngine.auroraMysql({version:rds.AuroraMysqlEngineVersion.VER_3_01_0});
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});
} else {
Expand Down

0 comments on commit 44c1398

Please sign in to comment.