Aurora Construct parameterGroup - MySQL 8 #17958
-
Hello, How can I specify the Aurora (MySQL version 8) properly in the ParameterGroup Prop? I am receiving the following:
I can see listed here: Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You probably need to create your own BTW, I think you're missing the second parameter to the The default Parameter Group for Aurora MySQL is |
Beta Was this translation helpful? Give feedback.
You probably need to create your own
ParameterGroup
, with engine equal tords.AuroraMysqlEngineVersion.of("8.0.mysql_aurora.3.01.0")
, and pass it when creating your Cluster.BTW, I think you're missing the second parameter to the
AuroraMysqlEngineVersion.of()
call - the major version of the engine, which should be'8.0'
in your case (the default is'5.7'
).The default Parameter Group for Aurora MySQL is
'default.aurora-mysql5.7'
, as the error message says.