-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofiles.yml
69 lines (50 loc) · 2.17 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
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
65
66
67
68
69
# SPDX-FileCopyrightText: 2022 Impulso Gov <contato@impulsogov.org>
#
# SPDX-License-Identifier: MIT
impulso-saude-mental:
target: producao
outputs:
analitico:
# Opções gerais. Ver:
# https://docs.getdbt.com/dbt-cli/configure-your-profile
type: postgres
threads: 8
# Opções do Postgres. Ver:
# https://docs.getdbt.com/reference/warehouse-profiles/postgres-profile
dbname: principal
schema: saude_mental
# Defina a variável DBT_ENV_SECRET_ANALITICO_SERVIDOR no GitHub Actions
# e/ou no arquivo .env
host: "{{ env_var('DBT_ENV_SECRET_ANALITICO_SERVIDOR') }}"
port: 5432
# Defina a variável DBT_ENV_SECRET_ANALITICO_USUARIO no GitHub Actions
# e/ou no arquivo .env
user: "{{ env_var('DBT_ENV_SECRET_ANALITICO_USUARIO') }}"
# Defina DBT_ENV_SECRET_ANALITICO_SENHA no GitHub Actions
# e/ou no arquivo .env
password: "{{ env_var('DBT_ENV_SECRET_ANALITICO_SENHA') }}"
keepalives_idle: 0 # default
connect_timeout: 10 # default
search_path: "$user, public, extensoes, postgis"
producao:
# Opções gerais. Ver:
# https://docs.getdbt.com/dbt-cli/configure-your-profile
type: postgres
threads: 8
# Opções do Postgres. Ver:
# https://docs.getdbt.com/reference/warehouse-profiles/postgres-profile
dbname: principal
schema: _saude_mental_producao
# Defina a variável DBT_ENV_SECRET_PRODUCAO_SERVIDOR no GitHub Actions
# e/ou no arquivo .env
host: "{{ env_var('DBT_ENV_SECRET_ANALITICO_SERVIDOR') }}"
port: 5432
# Defina a variável DBT_ENV_SECRET_PRODUCAO_USUARIO no GitHub Actions
# e/ou no arquivo .env
user: "{{ env_var('DBT_ENV_SECRET_ANALITICO_USUARIO') }}"
# Defina DBT_ENV_SECRET_PRODUCAO_SENHA no GitHub Actions
# e/ou no arquivo .env
password: "{{ env_var('DBT_ENV_SECRET_ANALITICO_SENHA') }}"
keepalives_idle: 0 # default 0, indicating the system default
connect_timeout: 10 # default 10 seconds
search_path: "$user, public, extensoes, postgis"