About profiles.yml context
The following context methods are available when configuring
resources in the profiles.yml
file.
Available context methods:
Example usage
~/.dbt/profiles.yml
jaffle_shop:
target: dev
outputs:
dev:
type: redshift
host: "{{ env_var('DBT_HOST') }}"
user: "{{ env_var('DBT_USER') }}"
password: "{{ env_var('DBT_PASS') }}"
port: 5439
dbname: analytics
schema: dbt_dbanin
threads: 4
0