Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

rds: AuroraPostgresEngineVersion contains invalid versions #32457

Closed
1 task
tmokmss opened this issue Dec 10, 2024 · 3 comments
Closed
1 task

rds: AuroraPostgresEngineVersion contains invalid versions #32457

tmokmss opened this issue Dec 10, 2024 · 3 comments
Labels
@aws-cdk/aws-rds Related to Amazon Relational Database bug This issue is a bug. needs-triage This issue or PR still needs to be triaged.

Comments

@tmokmss
Copy link
Contributor

tmokmss commented Dec 10, 2024

Describe the bug

As per doc https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.20180305.html, we can get the available Aurora postgres versions with the following command: aws rds describe-db-engine-versions --engine aurora-postgresql --query '*[].[EngineVersion]' --output text --region aws-region

Given the output, at least AuroraPostgresEngineVersion.VER_16_6 is not supported yet.

Regression Issue

  • Select this option if this issue appears to be a regression.

Last Known Working CDK Version

No response

Expected Behavior

AuroraPostgresEngineVersion contains already available versions.

Current Behavior

AuroraPostgresEngineVersion contains not-yet-available versions.

Reproduction Steps

Deployment of Aurora cluster with AuroraPostgresEngineVersion.VER_16_6 fails.

Possible Solution

No response

Additional Information/Context

No response

CDK CLI Version

2.170.0

Framework Version

No response

Node.js Version

22

OS

macos

Language

TypeScript

Language Version

No response

Other information

No response

@tmokmss tmokmss added bug This issue is a bug. needs-triage This issue or PR still needs to be triaged. labels Dec 10, 2024
@github-actions github-actions bot added the @aws-cdk/aws-rds Related to Amazon Relational Database label Dec 10, 2024
@nmussy
Copy link
Contributor

nmussy commented Dec 10, 2024

Version availability varies by region, in this case it's available in us-east-2 but not us-east-1:

$ aws rds describe-db-engine-versions --engine aurora-postgresql --region us-east-1 | jq -r '.DBEngineVersions[] | select(.EngineVersion=="16.6") | .EngineVersion'
$ aws rds describe-db-engine-versions --engine aurora-postgresql --region us-east-2 | jq -r '.DBEngineVersions[] | select(.EngineVersion=="16.6") | .EngineVersion'
16.6

@tmokmss
Copy link
Contributor Author

tmokmss commented Dec 10, 2024

@nmussy wow thanks. I thought us-east-1 is one of the most up-to-date region but it seems not. Aurora Postgres 17 also looks only supported in Ohio (ref). Closing the issue 🙏

@tmokmss tmokmss closed this as completed Dec 10, 2024
Copy link

Comments on closed issues and PRs are hard for our team to see.
If you need help, please open a new issue that references this one.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Dec 10, 2024
# for free to subscribe to this conversation on GitHub. Already have an account? #.
Labels
@aws-cdk/aws-rds Related to Amazon Relational Database bug This issue is a bug. needs-triage This issue or PR still needs to be triaged.
Projects
None yet
Development

No branches or pull requests

2 participants