-
Notifications
You must be signed in to change notification settings - Fork 1
/
profiles.yml
33 lines (32 loc) · 879 Bytes
/
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
dbt_testing_example:
target: dev
outputs:
dev:
type: postgres
host: localhost
user: postgres
password: "{{ env_var('POSTGRES_PASSWORD') }}"
port: 5432
dbname: postgres
schema: dbt_testing_example
threads: 4
test:
type: postgres
host: "{{ env_var('POSTGRES_HOST') }}"
user: "{{ env_var('POSTGRES_USER') }}"
password: "{{ env_var('POSTGRES_PASSWORD') }}"
port: 5432
dbname: "{{ env_var('POSTGRES_DB') }}"
schema: dbt_testing_example
threads: 4
elementary:
outputs:
default:
type: "postgres"
host: "{{ env_var('POSTGRES_HOST') }}"
port: 5432
user: "{{ env_var('POSTGRES_USER') }}"
password: "{{ env_var('POSTGRES_PASSWORD') }}"
dbname: "{{ env_var('POSTGRES_DB') }}"
schema: "dbt_testing_example_elementary"
threads: 4