-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathprofiles.yml
More file actions
38 lines (38 loc) · 1.29 KB
/
profiles.yml
File metadata and controls
38 lines (38 loc) · 1.29 KB
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
# dbt profile for Dune API connection
dbt_template:
target: dev
outputs:
dev:
type: trino
user: dune # do not change: user is always 'dune'
password: "{{ env_var('DUNE_API_KEY') }}"
host: trino.api.dune.com
port: 443
method: ldap
catalog: dune # do not change: catalog is always 'dune'
# schema: REQUIRED - Set DUNE_TEAM_NAME in .env to your team name
# Default is 'dune' if not set. To hardcode, replace: env_var('DUNE_TEAM_NAME', 'your_team')
schema: "{{ env_var('DUNE_TEAM_NAME', 'dune') }}"
threads: 4
http_scheme: https
cert: true
session_properties:
transformations: true
timezone: UTC
prod:
type: trino
user: dune # do not change: user is always 'dune'
password: "{{ env_var('DUNE_API_KEY') }}"
host: trino.api.dune.com
port: 443
method: ldap
catalog: dune # do not change: catalog is always 'dune'
# schema: REQUIRED - Set DUNE_TEAM_NAME in .env to your team name
# Default is 'dune' if not set. To hardcode, replace: env_var('DUNE_TEAM_NAME', 'your_team')
schema: "{{ env_var('DUNE_TEAM_NAME', 'dune') }}"
threads: 4
http_scheme: https
cert: true
session_properties:
transformations: true
timezone: UTC