We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, the standard Amazon RDS CA root certificate is not being bunded with the ODBC driver.
Download an SSL certificate for your managed database in Amazon Lightsail | Lightsail Documentation
https://s3.amazonaws.com/rds-downloads/rds-ca-2019-root.pem
An attempt was made to enable this in the driver, without success.
tls_options.ca_file("path-to-file")
However, this did not seem to work as expected.
So currently, we are allowing invalid server certificates
tls_options.allow_invalid_certificates(true)
This task is to resolve the issue of using a CA file, distribute the CA certificate and re-enable server certificate checking.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, the standard Amazon RDS CA root certificate is not being bunded with the ODBC driver.
Download an SSL certificate for your managed database in Amazon Lightsail | Lightsail Documentation
https://s3.amazonaws.com/rds-downloads/rds-ca-2019-root.pem
An attempt was made to enable this in the driver, without success.
tls_options.ca_file("path-to-file")
However, this did not seem to work as expected.
So currently, we are allowing invalid server certificates
tls_options.allow_invalid_certificates(true)
This task is to resolve the issue of using a CA file, distribute the CA certificate and re-enable server certificate checking.
The text was updated successfully, but these errors were encountered: