- Newest
- Most votes
- Most comments
The issue you're experiencing with RDS Proxy connections failing since August 27, 2025, is likely related to the expiration of the rds-ca-2019 SSL/TLS certificate, which expired in August 2024. This certificate was used for Amazon RDS and related services.
When SSL/TLS certificates expire, connections to Amazon RDS databases can fail with SSL handshake errors like the one you're seeing. To resolve this issue, you need to:
- Check your RDS instance's current certificate by running the AWS CLI command:
aws rds describe-db-instances --region your-region --db-instance-identifier your-db --query 'DBInstances[0].{DBInstanceIdentifier:DBInstanceIdentifier,CACertificateIdentifier:CACertificateIdentifier}'
-
If the output shows "rds-ca-2019" as the certificate identifier, you need to modify your DB instance or cluster to update the CA certificate.
-
For your Lambda connection, try updating your connection configuration. Since you're using RDS Proxy, ensure that your security groups are properly configured to allow the RDS Proxy security group to access the RDS cluster security group.
-
Also, verify that the TLS versions between your RDS cluster and RDS Proxy match. Amazon RDS for MySQL 8.4 supports TLS 1.2 and TLS 1.3 with specific cipher suites, so ensure your client application is compatible with these versions.
After updating the certificates and ensuring proper TLS configuration, your Lambda should be able to connect to the RDS Proxy again.
Sources
Troubleshoot Amazon RDS expired SSL/TLS certificate connection issues | AWS re:Post
AWS RDS Proxy stuck with PENDING_PROXY_CAPACITY | AWS re:Post
Amazon RDS for MySQL LTS version 8.4 is now generally available | AWS Database Blog
Relevant content
- asked 2 years ago
- AWS OFFICIALUpdated 6 months ago
