data-dwh-dbt-project/profiles.yml.example

23 lines
451 B
Text
Raw Normal View History

2024-01-18 17:25:41 +01:00
dwh_dbt:
outputs:
dev:
dbname: dwh
2024-02-02 16:31:45 +01:00
host: <your-host>
2024-01-18 17:25:41 +01:00
user: <your-user>
pass: <your-password>
2024-02-05 10:35:20 +01:00
port: <your-port-probably-5432>
2024-01-18 17:25:41 +01:00
schema: working
threads: 4
type: postgres
prd:
dbname: dwh
2024-02-02 16:31:45 +01:00
host: <your-host>
2024-01-18 17:25:41 +01:00
user: <prd-dbt-user>
pass: <prd-dbt-password>
2024-02-05 10:35:20 +01:00
port: <your-port-probably-5432>
2024-01-18 17:25:41 +01:00
schema: working
threads: 4
type: postgres
target: dev