-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofiles.yml
33 lines (29 loc) · 1016 Bytes
/
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
deploy_dbt:
target: dev
outputs:
dev:
type: snowflake
account: "{{ env_var('DEPLOY_DBT_SNOWFLAKE_ACCOUNT_ID') }}"
# User/password auth
user: "{{ env_var('DEPLOY_DBT_SNOWFLAKE_USERNAME') }}"
password: "{{ env_var('DEPLOY_DBT_SNOWFLAKE_PASSWORD') }}"
role: dbt_dev_role
database: dbt_dev_db
warehouse: dbt_dev_wh
# in the future you should switch this schema to use a new environment variable
# definitely switch this to your schema though
schema: DBT_RSOANKAMBLE
threads: 4
client_session_keep_alive: False
prod:
type: snowflake
account: "{{ env_var('DEPLOY_DBT_SNOWFLAKE_ACCOUNT_ID') }}"
# User/password auth
user: "{{ env_var('DEPLOY_DBT_SNOWFLAKE_USERNAME') }}"
password: "{{ env_var('DEPLOY_DBT_SNOWFLAKE_PASSWORD') }}"
role: DBT_PROD_ROLE
database: dbt_prod_db
warehouse: dbt_prod_wh
schema: DBT_RSOANKAMBLE
threads: 4
client_session_keep_alive: False