Skip to main content
Use this to connect Alumio to a PostgreSQL database server. Once it is set up, the connection can be reused by other features that read from or write to your PostgreSQL database, so you only supply where the server lives and how to sign in once.

Fields

Sample data

A typical PostgreSQL connection:
FieldValue
Server hostyour-db-host.example.com
Port5432
Database namewarehouse
Usernameintegration_user
Passwordyour-password
{
    "host": "your-db-host.example.com",
    "port": 5432,
    "dbname": "warehouse",
    "username": "integration_user",
    "password": "your-password"
}
Connection credentials are shown here as placeholders. For the password you can reference an environment variable instead of typing the secret directly; see Placeholders for the full syntax.