postgres://<USER>:<PASSWORD>@<HOST>:<PORT>/<DATABASE>
.psql
command which can be used in the command line to connect to the databse.libpq
based clients.sslmode=require
when connecting applications to your instance, to ensure that the connection is
encrypted.
For production workloads, it is recommened that you connect to your instance
using a verified TLS connection. To do this, download the CA certificate bundle
from the Connection view, and add them to your database client’s trusted
certificates.
For example, to connect to your PostgreSQL instance with “psql” using a verified
TLS connection, you can add sslmode=verify-full
and
sslrootcert=<PATH_TO_DOWNLOADED_CA_CERT>
to the connection string provided: