-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofiles.yml
36 lines (33 loc) · 1.07 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
config:
send_anonymous_usage_stats: False
use_colors: True
sdcs:
target: dev
outputs:
dev:
type: postgres
threads: 4
host: "{{ env_var('DB_HOST') }}"
port: "{{ env_var('DB_PORT') | as_number }}"
user: "{{ env_var('DB_USER' )}}"
password: "{{ env_var('DB_PASSWORD' )}}"
dbname: "{{ env_var('DB_NAME') }}"
schema: "{{ env_var('DB_SCHEMA') }}"
prod:
type: postgres
threads: 4
host: "{{ env_var('DBT_ENV_SECRET_DB_HOST') }}"
port: "{{ env_var('DB_PORT') | as_number }}"
user: "{{ env_var('DBT_ENV_SECRET_DB_USER' )}}"
password: "{{ env_var('DBT_ENV_SECRET_DB_PASSWORD') )}}"
dbname: "{{ env_var('DBT_ENV_SECRET_DB_NAME') }}"
schema: analysis
ci:
type: postgres
threads: 4
host: "{{ env_var('DBT_ENV_SECRET_DB_HOST') }}"
port: "{{ env_var('DB_PORT') | as_number }}"
user: "{{ env_var('DBT_ENV_SECRET_DB_USER' )}}"
password: "{{ env_var('DBT_ENV_SECRET_DB_PASSWORD') )}}"
dbname: "{{ env_var('DBT_ENV_SECRET_DB_NAME') }}"
schema: dbt_ci