-
Notifications
You must be signed in to change notification settings - Fork 0
/
profiles.yml
35 lines (32 loc) · 1.22 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
config:
send_anonymous_usage_stats: False
default:
target: dev
outputs:
dev:
type: postgres
threads: 4
host: "{{ env_var('DBT_POSTGRES_HOST_DEV') }}"
port: "{{ env_var('DBT_POSTGRES_PORT_DEV') | int }}"
user: "{{ env_var('DBT_POSTGRES_USER_DEV') }}"
password: "{{ env_var('DBT_POSTGRES_PWD_DEV') }}"
dbname: "{{ env_var('DBT_POSTGRES_DBNAME_DEV') }}"
schema: "{{ env_var('DBT_POSTGRES_SCHEMA_DEV') }}"
stag:
type: postgres
threads: 16
host: "{{ env_var('DBT_POSTGRES_HOST_STAG') }}"
port: "{{ env_var('DBT_POSTGRES_PORT_STAG') | int }}"
user: "{{ env_var('DBT_POSTGRES_USER_STAG') }}"
password: "{{ env_var('DBT_POSTGRES_PWD_STAG') }}"
dbname: "{{ env_var('DBT_POSTGRES_DBNAME_STAG') }}"
schema: "{{ env_var('DBT_POSTGRES_SCHEMA_STAG') }}"
prod:
type: postgres
threads: 16
host: "{{ env_var('DBT_POSTGRES_HOST_PROD') }}"
port: "{{ env_var('DBT_POSTGRES_PORT_PROD') | int }}"
user: "{{ env_var('DBT_POSTGRES_USER_PROD') }}"
password: "{{ env_var('DBT_POSTGRES_PWD_PROD') }}"
dbname: "{{ env_var('DBT_POSTGRES_DBNAME_PROD') }}"
schema: "{{ env_var('DBT_POSTGRES_SCHEMA_PROD') }}"