Skip to content

Commit 465c8ad

Browse files
authoredMay 17, 2024··
chore(rds): add support for postgres 16.3 engine (#30242)
### Issue # (if applicable) N/A ### Reason for this change RDS can be upgraded/created to Postgres 16.3 via the console/CLI but not CDK. ### Description of changes Added Postgres 16.3 support for RDS clusters and instances. Updated examples to use Postgres 16.3. ### Description of how you validated changes Tests have been updated to use Postgres 16.3. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent dca7efe commit 465c8ad

23 files changed

+3886
-4121
lines changed
 

‎packages/@aws-cdk-testing/framework-integ/test/aws-rds/test/integ.instance-dual.js.snapshot/aws-cdk-rds-instance-dual-integ.template.json

+451-477
Large diffs are not rendered by default.

‎packages/@aws-cdk-testing/framework-integ/test/aws-rds/test/integ.instance-dual.js.snapshot/tree.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/@aws-cdk-testing/framework-integ/test/aws-rds/test/integ.instance-dual.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ vpc.isolatedSubnets.forEach((subnet, idx) => {
1515
});
1616

1717
new rds.DatabaseInstance(stack, 'DualstackInstance', {
18-
engine: rds.DatabaseInstanceEngine.postgres({ version: rds.PostgresEngineVersion.VER_16_2 }),
18+
engine: rds.DatabaseInstanceEngine.postgres({ version: rds.PostgresEngineVersion.VER_16_3 }),
1919
credentials: rds.Credentials.fromUsername('postgres', { password: cdk.SecretValue.unsafePlainText('7959866cacc02c2d243ecfe177464fe6') }),
2020
instanceType: ec2.InstanceType.of(ec2.InstanceClass.BURSTABLE3, ec2.InstanceSize.MICRO),
2121
vpc,
@@ -27,7 +27,7 @@ new rds.DatabaseInstance(stack, 'DualstackInstance', {
2727
});
2828

2929
new rds.DatabaseInstance(stack, 'Ipv4Instance', {
30-
engine: rds.DatabaseInstanceEngine.postgres({ version: rds.PostgresEngineVersion.VER_16_2 }),
30+
engine: rds.DatabaseInstanceEngine.postgres({ version: rds.PostgresEngineVersion.VER_16_3 }),
3131
credentials: rds.Credentials.fromUsername('postgres', { password: cdk.SecretValue.unsafePlainText('7959866cacc02c2d243ecfe177464fe6') }),
3232
instanceType: ec2.InstanceType.of(ec2.InstanceClass.BURSTABLE3, ec2.InstanceSize.MICRO),
3333
vpc,

0 commit comments

Comments
 (0)
Please sign in to comment.