23 lines
469 B
Text
23 lines
469 B
Text
|
|
dwh_dbt:
|
||
|
|
outputs:
|
||
|
|
dev:
|
||
|
|
dbname: dwh
|
||
|
|
host: localhost
|
||
|
|
user: <your-user>
|
||
|
|
pass: <your-password>
|
||
|
|
port: <the local port for your ssh tunnel>
|
||
|
|
schema: working
|
||
|
|
threads: 4
|
||
|
|
type: postgres
|
||
|
|
|
||
|
|
prd:
|
||
|
|
dbname: dwh
|
||
|
|
host: localhost
|
||
|
|
user: <prd-dbt-user>
|
||
|
|
pass: <prd-dbt-password>
|
||
|
|
port: <the local port for your ssh tunnel>
|
||
|
|
schema: working
|
||
|
|
threads: 4
|
||
|
|
type: postgres
|
||
|
|
|
||
|
|
target: dev
|