You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to pass the SSL certificate (root.key, client.crt, client.key) to connect to a remote distant secured database with an SSL connection ?
SQLAlchemy have a support for that, it will be done by adding some args like --client_key --client_crt --root_crt.
And add it internally into a dict and pass it through the connect_args of the SQLALchemy create_engine as below:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
How to pass the SSL certificate (root.key, client.crt, client.key) to connect to a remote distant secured database with an SSL connection ?
SQLAlchemy have a support for that, it will be done by adding some args like --client_key --client_crt --root_crt.
And add it internally into a dict and pass it through the connect_args of the SQLALchemy create_engine as below:
Thanks for all, you're tool is magic !
Best regards !
Beta Was this translation helpful? Give feedback.
All reactions