-
-
Notifications
You must be signed in to change notification settings - Fork 640
Closed
Labels
Description
I struggled a bit today connecting to an Azure mysql server. I wanted to use TLS, but didn't want to supply certificates manually. (counting on the host's OS to already trust the remote server)
I got it working, but in hindsight I have a couple suggestions to flatten the speed bump and help folks in the future:
- Allow
ssl: true
for people like me that want to turn it on but don't need to customize it - Make it really clear in the tooltip that:
- An empty object
ssl: {}
means "Use SSL". - An absent field (no
ssl:
) means "Don't use SSL".
- An empty object
pkuczynski