For SeekWell to work, you'll need whitelist our IP addresses:
35.193.207.79 and 35.239.74.213
Make sure you include the -----BEGIN RSA PRIVATE KEY-----
at the top and the -----END RSA PRIVATE KEY-----
at the bottom. You can't use an OPENSSH key (e.g. one starting with -----BEGIN OPENSSH PRIVATE KEY-----
). If you have an OPENSSH key, you can convert it to an RSA key with these instructions.
Here's an example on AWS (more info). In the example, we're whitelisting a Postgres database, be sure to choose the Type appropriate for your database.

Snowflake provides connection instructions here.
Here's an example on Google Cloud SQL, first click on SQL in the drop down > select your database and click on the "Connections" tab and click "Add network". Make sure you include "/32" after the IP address.


Go to your database details and click "Set server firewall"

Add our IP addresses and click "Save"


Example using MySQL statements
GRANT SELECT ON *.* to your_user_name@'35.193.207.79' IDENTIFIED BY 'your_user_password';
GRANT SELECT ON *.* to your_user_name@'35.239.74.213' IDENTIFIED BY 'your_user_password';
Change your_user_name
and your_user_password
Normally, you will have already granted access to your current External IP, but if you haven't, you will need to grant access for that as well.