If you look at the AWS Console, Aurora Postgres-compatible version 14.3 is available to be provisioned.
However, it looks like the latest version available in CDK is 13.7.
Is there a way to manually pass in 14.3 when instantiating a cluster from CDK?
rds.DatabaseCluster(
self,
'AuroraPostgresCluster',
engine=rds.DatabaseClusterEngine.aurora_postgres(
version=rds.AuroraPostgresEngineVersion.VER_13_7
),
...
2
Answers
Probably yes.
I would try the static
of()
Method, but You have to know also theauroraPostgresFullVersion
Parameter.Start with
The docs states:
So in my opinion this should work, however I didn’t tried this out.
It is now available: