-
Notifications
You must be signed in to change notification settings - Fork 5
/
profiles.yml.sample
64 lines (54 loc) · 2.18 KB
/
profiles.yml.sample
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# This file should be copied to your ~/.dbt/ folder or the entries added to an existing profiles.yml
# All of the values in brackets must be replaced with your own
# Sample entries are provided for logging in through password, key pair, or SSO authentication
SNOWFLAKE:
target: dev
outputs:
dev:
type: snowflake
account: "You want just the text before .snowflakecomputing.com in your Snowflake URL"
user: "database user id"
role: "database role"
# User/password auth
# user: "username"
# password: "password"
# SSO authentication
# authenticator: externalbrowser
# Keypair authentication
private_key_path: "/Users/myuser/.ssh/rsa_key.p8"
private_key_passphrase: "passphrase"
database: "Database Name"
warehouse: "Virtual Warehouse Name"
schema: "Target Schema Name"
threads: 8 # A Snowflake virtual warehouse can generally process 8 queries concurrently before starting a second cluster
client_session_keep_alive: False
query_tag: dbt_snowflake_demo1
# optional
connect_retries: 0 # default 0
connect_timeout: 10 # default: 10
retry_on_database_errors: False # default: false
retry_all: False # default: false
test:
type: snowflake
account: "You want just the text before .snowflakecomputing.com in your Snowflake URL"
user: "database user id"
role: "database role"
# User/password auth
# user: "username"
# password: "password"
# SSO authentication
# authenticator: externalbrowser
# Keypair authentication
private_key_path: "/Users/myuser/.ssh/rsa_key.p8"
private_key_passphrase: "passphrase"
database: "Database Name"
warehouse: "Virtual Warehouse Name"
schema: "Target Schema Name"
threads: 8 # A Snowflake virtual warehouse can generally process 8 queries concurrently before starting a second cluster
client_session_keep_alive: False
query_tag: dbt_snowflake_demo1
# optional
connect_retries: 0 # default 0
connect_timeout: 10 # default: 10
retry_on_database_errors: False # default: false
retry_all: False # default: false