-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
aws_rds: VER_13_13 not available but documentation says otherwise #30445
Comments
It should be available
Can you make sure you use the latest AWS CDK and try again? |
@pahud , thanks for taking a look. I also tried with cdk version PS: I am using the Python runtime of the library. |
VER_15_6 is also listed in the documentation referenced and not actually available in 2.145 (also using Python) - but I do see VER_13_13 listed (and VER_13_14). |
@richardgroves , do you mean that |
@bayoishola Yes - I see all of 13.3 through 13.14 enumerated in the Python library for 2.145. For 15 it is just 15.2-15.5, but the code for 15.6 was committed 3 days ago, so maybe released in the next version - shame that 15.7 is already available on console...
for a hacky dump of the versions available. |
Thanks for confirming and for the tips as well. @richardgroves |
Another tip - from CLI you can do this:
to get a list of the versions available. From my current CLI version of "aws-cli/2.16.4 Python/3.11.9 Darwin/23.5.0 source/x86_64" I get:
So that isn't showing 15.7 and 16.3 which were announced as available on 9th May 2024 - https://aws.amazon.com/about-aws/whats-new/2024/05/amazon-rds-postgresql-supports-new-versions/ There appears to be a lot of lag in the support of new versions across the toolchains. |
@richardgroves , just getting back to this and I noticed you were looking at aurora postgres (which by the way is available on the console using the command but not in the CDK library) as opposed to rds postgres. Up until aws-cdk-lib version 2.149.0 (current latest release), I still don't see engine version aws rds describe-db-engine-versions --engine postgres | grep DBEngineVersionDescription @pahud , any update, please? |
I can see
Also available in doc https://docs.aws.amazon.com/cdk/api/v2/python/aws_cdk.aws_rds/PostgresEngineVersion.html PoC # create a rds with postgres VER_13_13
rds.DatabaseInstance(
self,
"RDSInstance",
engine=rds.DatabaseInstanceEngine.postgres(version=rds.PostgresEngineVersion.VER_13_13),
vpc=vpc,
removal_policy=RemovalPolicy.DESTROY,
) cdk synth should return
|
@pahud , thanks for responding. What version of the python AWS CDK do you have installed for the above? Thanks! |
Make sure you have activated the
|
This issue has not received a response in a while. If you want to keep this issue open, please leave a comment below and auto-close will be canceled. |
Describe the bug
Hi,
In the documentation, it says that Postgres Engine version 13.13 should be available but this isn't the case in the cdk library.
Expected Behavior
DatabaseInstanceEngine.postgres(version=PostgresEngineVersion.VER_13_13)
Current Behavior
DatabaseInstanceEngine.postgres(version=PostgresEngineVersion.VER_13_12)
13.12 is the max minor version for Postgres Engine 13 in the library.
Reproduction Steps
Possible Solution
...
Additional Information/Context
AWS recommends upgrading your Amazon RDS for PostgreSQL databases running minor versions to 13.13.
CDK CLI Version
2.143.0 (build 9f2bdf7)
Framework Version
No response
Node.js Version
v20.11.1
OS
Windows
Language
Python
Language Version
3.9.16
Other information
No response
The text was updated successfully, but these errors were encountered: