databases:
- name: my_postgres_db # Unique identifier for this connection
type: postgres
host: "localhost" # PostgreSQL server hostname or IP
port: 5432 # PostgreSQL server port (default: 5432)
user: "postgres" # Username for authentication
password: <password> # Direct password (not recommended)
password_var: "PG_PWD" # Environment variable containing password (recommended)
database: "postgres" # Database name to connect to
ssl_mode: "require" # SSL mode (disable, require, verify-ca, verify-full)