You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to deploy to the cloud and have failed due to MariaDB 10.5.9 no longer being supported by RDS. Supported versions include 10.5.12 and 10.5.13, however, when trying to edit
reciterDb = new DatabaseInstance(this, "reciterDb", DatabaseInstanceProps.builder()
.engine(DatabaseInstanceEngine.mariaDb(MariaDbInstanceEngineProps.builder()
.version(MariaDbEngineVersion.VER_10_5_9
manually to either 12 or 13 to attempt to deploy I run into symbol not found errors. I'm too unfamiliar with CDK and java compilation to attempt any further troubleshooting
Thanks,
Mike
The text was updated successfully, but these errors were encountered:
upgrade aws-cdk from 1.220.0(I think) to 1.134.0 npm install -g [email protected]
change cdk version in pom.xml to 1.134.0 (line 35)
change mariaDB version to 10.5.12 in ReCiterCdkRDSStack.java from VER_10_5_9 to VER_10_5_12 (line 42)
@mbullmanFHCRC I am updating the CDK version to the latest which is version 2. It should fix any version deprecation in any other resources as well. Also make sure to pull latest changes for ReCiter since we have patched the log4j vulnerability with the new release - https://github.com/wcmc-its/ReCiter/releases/tag/2.1.2
Hi,
I'm trying to deploy to the cloud and have failed due to MariaDB 10.5.9 no longer being supported by RDS. Supported versions include 10.5.12 and 10.5.13, however, when trying to edit
manually to either 12 or 13 to attempt to deploy I run into symbol not found errors. I'm too unfamiliar with CDK and java compilation to attempt any further troubleshooting
Thanks,
Mike
The text was updated successfully, but these errors were encountered: