rds: cannot create RDS MySQL 8.4.3 #32933
Labels
@aws-cdk/aws-rds
Related to Amazon Relational Database
bug
This issue is a bug.
effort/medium
Medium work item – several days of effort
p2
Describe the bug
While creating RDS MySQL instance version 8.4.3, CloudFormation failed with following error:
Regression Issue
Last Known Working CDK Version
N/A
Expected Behavior
An RDS MySQL instance version 8.4.3 is successfully created.
Current Behavior
Unable to create an RDS MySQL instance version 8.4.3.
Reproduction Steps
Deploy RDS MySQL instance with custom parameters:
Possible Solution
rds.MysqlEngineVersion.VER_8_4_3
is defined asMysqlEngineVersion.of('8.4.3', '8.0')
includes wrong major version.So the parameter group with DBParameterGroupFamily mysql8.0 is being created.
Additional Information/Context
WORKAROUND: use
rds.MysqlEngineVersion.of('8.4.3', '8.4')
instead ofrds.MysqlEngineVersion.VER_8_4_3
.CDK CLI Version
2.175.1
Framework Version
2.175.1
Node.js Version
20.18.1
OS
Ubuntu
Language
TypeScript
Language Version
No response
Other information
Related #32257
The text was updated successfully, but these errors were encountered: