Postgres

Luden supports Postgres as a destination. For more information about Postgres see docs.

Configuration

Postgres destination config consists of the following schema:

destinations:
  my_postgres:
    type: postgres
    datasource:
      host: my_postgres_host
      db: my-db
      schema: myschema
      port: 5432
      username: user
      password: pass
      parameters:
        sslmode: disable
        connect_timeout: 300

Last updated