-
Notifications
You must be signed in to change notification settings - Fork 5
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
Support for opinionated Postgres RDS #1786
Comments
https://github.com/aws-samples/aws-cdk-examples/tree/master/typescript/rds might offer some inspiration. |
akash1810
added a commit
to guardian/service-catalogue
that referenced
this issue
May 8, 2023
This is a start to address guardian/cdk#1786 in a real-world service.
AWS offers multi-AZ instances and multi-AZ clusters, which are slightly different. It would be great to encode a recommendation of when to make use of each type. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We don't have any (meaningful) RDS constructs yet. Some of the RDS defaults aren't very helpful, for example StorageEncrypted:
That is, making an RDS database encrypted after the fact, and retaining data, is not trivial.
We should provide an opinionated RDS construct that includes:
Secrets manager for root password(already a default of AWS CDK)rds-ca-rsa2048-g1
certificate authority over the defaultrds-ca-2019
.rds-ca-rsa2048-g1
offers automatic rotation, whereasrds-ca-2019
is manual.1Footnotes
https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html#UsingWithRDS.SSL.RegionCertificateAuthorities ↩
The text was updated successfully, but these errors were encountered: