Connecting with TLS (SSL)
Hydra is secured with end-to-end encryption with publicly-trusted certificates.
Last updated
Hydra is secured with end-to-end encryption with publicly-trusted certificates.
Last updated
You must use TLS (SSL) to connect to Hydra. Hydra does not support unencrypted connections.
Hydra has publicly-trusted certificates, issued by , allowing you to connect safety and securely to your data warehouse from anywhere on the Internet.
Whenever possible, we recommend validating the certificate. To do so, use sslmode=verify-full
when connecting and configure your Postgres connection to read your public certificate bundle. More
If you are unable to configure your Postgres connection, we recommend using sslmode=require
.
For clients based on libpq, information on sslmode
in .
For GUI clients, configuration for SSL will vary. Please look for SSL settings when configuring a connection. If you encounter issues, please check your client's documentation for more information. If you are still unable to connect, reach out to Hydra support and we'll do our best to assist you.
To validate the certificate, you will need to know the location of your root certificate bundle. On many systems, this file is located at /etc/ssl/cert.pem
.
If the file is not located in /etc/ssl
, you can use curl -v
to a secure URL and look for the CAfile
line:
You have several options on how to connect with Hydra while validating the certificate.
The simplest option is to add the file to the end of the connection string using the parameter sslrootcert
, as follows:
Once you have added this entry, connect to your data warehouse using the name you specified at the top of block:
Any additional parameters will override your service entry. For example, you can use psql service=hydra dbname=postgres
to connect to the postgres
database.
If you choose this path, psql
will try to validate certificates when connecting to any Postgres database. This will cause connections to some other Postgres databases to return an error, even if you set sslmode
.
You can instruct psql
to always read your public certificate bundle my symlinking ~/.postgresql/root.crt
to your public root cert bundle:
You should refer to your application's Postgres library, but many libraries use libpq
behind the scenes. You can configure libpq
to read your cert bundle using the PGSSLROOTCERT
environment variable. For example, add this environment variable to your application's environment:
Please double check the location of your CA cert bundle in your production environment.
You can manage and save your Hydra connection by creating an entry in your , located at ~/.pg_service.conf
.