-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofiles.yml
39 lines (38 loc) · 1.31 KB
/
profiles.yml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
testing:
outputs:
test-snowflake-prod:
user: "{{ env_var('DBT_USER') }}"
schema: "{{ env_var('DBT_SCHEMA_PROD') }}"
threads: 20
type: snowflake
account: "{{ env_var('DBT_HOST') }}"
password: "{{ env_var('DBT_PASSWORD') }}" # pragma: allowlist secret
database: "{{ env_var('DBT_DATABASE') }}"
role: transformer
warehouse: transforming
client_session_keep_alive: False
query_tag: "{{ env_var('DBT_USER') }}"
test-snowflake-non-prod:
user: "{{ env_var('DBT_USER') }}"
schema: "{{ env_var('DBT_SCHEMA_NON_PROD') }}"
threads: 20
type: snowflake
account: "{{ env_var('DBT_HOST') }}"
password: "{{ env_var('DBT_PASSWORD') }}" # pragma: allowlist secret
database: "{{ env_var('DBT_DATABASE') }}"
role: transformer
warehouse: transforming
client_session_keep_alive: False
query_tag: "{{ env_var('DBT_USER') }}"
test-bigquery-prod:
type: bigquery
method: oauth
project: "{{ env_var('BIGQUERY_PROJECT_ID') }}"
dataset: "{{ env_var('BIGQUERY_DATASET_PROD') }}"
threads: 8
test-bigquery-non-prod:
type: bigquery
method: oauth
project: "{{ env_var('BIGQUERY_PROJECT_ID') }}"
dataset: "{{ env_var('BIGQUERY_DATASET_NON_PROD') }}"
threads: 8