- Newest
- Most votes
- Most comments
Hello.
Have you tried making changes from the AWS CLI instead of from the management console?
Try the command below.
https://awscli.amazonaws.com/v2/documentation/api/latest/reference/rds/modify-db-instance.html
aws rds modify-db-instance \
--db-instance-identifier mydbinstance \
--ca-certificate-identifier rds-ca-rsa2048-g1
Hello,
To resolve the issue with expired RDS CA certificates in the Preview Environment, you can use the AWS CLI to update the certificates. Here’s the command to update your RDS instance to use the new CA certificate:
aws rds modify-db-instance \
--db-instance-identifier your-db-instance-identifier \
--ca-certificate-identifier rds-ca-rsa2048-g1 \
--apply-immediately
Replace 'your-db-instance-identifier' with your actual DB instance identifier. This command should force the upgrade to the new certificates even if the option isn't available in the console.
Hi, thanks for the answer! Unfortunately I get this error in response:
An error occurred (CertificateNotFound) when calling the ModifyDBInstance operation: Certificate not found: rds-ca-rsa2048-g1
Relevant content
- asked 4 months ago
- asked 7 months ago
- AWS OFFICIALUpdated 10 days ago
- AWS OFFICIALUpdated 6 months ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 3 years ago
Hi, thanks for the answer! Unfortunately I get this error in response:
An error occurred (CertificateNotFound) when calling the ModifyDBInstance operation: Certificate not found: rds-ca-rsa2048-g1