- Newest
- Most votes
- Most comments
Hi there,
Can you run this command and see which targets are available for your current version: aws rds describe-db-engine-versions
--engine postgres
--engine-version 11.6
--query "DBEngineVersions[].ValidUpgradeTarget[].{EngineVersion:EngineVersion}" --output text
Version 11.6 is currently not available on AWS so you may have to upgrade via the CLI, if you're not already. Follow this guide to ensure all requirements are met - https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.PostgreSQL.html#USER_UpgradeDBInstance.PostgreSQL.MajorVersion
The command to upgrade is seen when you expand the AWS CLI toggle as seen below: aws rds modify-db-cluster --db-cluster-identifier mydbcluster --engine-version new_version --allow-major-version-upgrade --no-apply-immediately
Relevant content
- asked 8 months ago
- asked 2 years ago
- asked 3 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago