-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathprofiles.tmpl.yml
More file actions
25 lines (23 loc) · 873 Bytes
/
Copy pathprofiles.tmpl.yml
File metadata and controls
25 lines (23 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
dbt_clickhouse_analytics:
outputs:
dev:
type: clickhouse
driver: http
host: "{{ env_var('DBT_CLICKHOUSE_HOST', 'localhost') }}"
port: "{{ env_var('DBT_CLICKHOUSE_PORT', 8123) | as_number }}"
schema: "{{ env_var('DBT_CLICKHOUSE_TARGET_DATABASE') }}"
user: "{{ env_var('DBT_CLICKHOUSE_USER', 'default') }}"
password: "{{ env_var('DBT_CLICKHOUSE_PASSWORD', '') }}"
secure: False
threads: 4
prod:
type: clickhouse
driver: http
host: "{{ env_var('DBT_CLICKHOUSE_HOST') }}"
port: "{{ env_var('DBT_CLICKHOUSE_PORT', 8123) | as_number }}"
schema: "{{ env_var('DBT_CLICKHOUSE_TARGET_DATABASE') }}"
user: "{{ env_var('DBT_CLICKHOUSE_USER') }}"
password: "{{ env_var('DBT_CLICKHOUSE_PASSWORD') }}"
secure: False
threads: 4
target: dev