Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rds): PostgreSQL 14.10, 13.13, 12.17, and 11.22 (#28131)
This PR supports RDS for PostgreSQL 14.10, 13.13, 12.17, and 11.22. ```bash ❯ aws rds describe-db-engine-versions \ ∙ --engine postgres \ ∙ --query "DBEngineVersions[?EngineVersion=='14.10'||EngineVersion=='13.13'||EngineVersion=='12.17'||EngineVersion=='11.22'].[DBEngineVersionDescription,EngineVersion,DBParameterGroupFamily,MajorEngineVersion,Status]" [ [ "PostgreSQL 11.22-R1", "11.22", "postgres11", "11", "available" ], [ "PostgreSQL 12.17-R1", "12.17", "postgres12", "12", "available" ], [ "PostgreSQL 13.13-R1", "13.13", "postgres13", "13", "available" ], [ "PostgreSQL 14.10-R1", "14.10", "postgres14", "14", "available" ] ] ``` https://aws.amazon.com/jp/about-aws/whats-new/2023/11/amazon-rds-postgresql-minor-versions-15-5-14-10-13-13-12-17-11-22/ (The 15.5 has already added to CDK.) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
- Loading branch information