-
Notifications
You must be signed in to change notification settings - Fork 14
/
profiles.yml
48 lines (43 loc) · 1.59 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
40
41
42
43
44
45
46
47
48
# HEY! This file is borrowed from the dbt-expectations package.
# You should __NEVER__ check credentials into version control. Thanks for reading :)
config:
send_anonymous_usage_stats: False
use_colors: True
integration_tests:
target: snowflake
outputs:
# postgres:
# type: postgres
# host: localhost
# user: "{{ env_var('CI_DBT_USER') }}"
# pass: "{{ env_var('CI_DBT_PASS') }}"
# port: "{{ env_var('CI_DBT_PORT') }}"
# dbname: "{{ env_var('CI_DBT_DBNAME') }}"
# schema: dbt_expectations_integration_tests
# threads: 1
# redshift:
# type: redshift
# host: "{{ env_var('CI_REDSHIFT_DBT_HOST') }}"
# user: "{{ env_var('CI_REDSHIFT_DBT_USER') }}"
# pass: "{{ env_var('CI_REDSHIFT_DBT_PASS') }}"
# dbname: "{{ env_var('CI_REDSHIFT_DBT_DBNAME') }}"
# port: 5439
# schema: dbt_expectations_integration_tests
# threads: 1
# bigquery:
# type: bigquery
# method: service-account
# keyfile: "{{ env_var('GCLOUD_SERVICE_KEY_PATH') }}"
# project: 'dbt-integration-tests'
# schema: dbt_expectations_integration_tests
# threads: 1
snowflake:
type: snowflake
account: "{{ env_var('CI_SNOWFLAKE_DBT_ACCOUNT') }}"
user: "{{ env_var('CI_SNOWFLAKE_DBT_USER') }}"
password: "{{ env_var('CI_SNOWFLAKE_DBT_PASS') }}"
role: "{{ env_var('CI_SNOWFLAKE_DBT_ROLE') }}"
database: "{{ env_var('CI_SNOWFLAKE_DBT_DATABASE') }}"
warehouse: "{{ env_var('CI_SNOWFLAKE_DBT_WAREHOUSE') }}"
schema: dbt_meta_testing_integration_tests
threads: 1