Skip to content

Commit

Permalink
new: add normalize dbt profile to profiles.yml (et/somenergia-jardine…
Browse files Browse the repository at this point in the history
…r!144)

Merge branch 'fix/add-normalize-dbt-profile-for-airbyte' into 'main'
  • Loading branch information
diegoquintanav committed Apr 9, 2024
2 parents 43832d4 + b6c65d8 commit ca4f5b0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions dbt_jardiner/config/profiles.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
---
dbt_jardiner:
outputs:
# needed for airbyte to pick up the correct profile during dbt transformations, see https://github.com/airbytehq/airbyte/issues/12465
normalize:
type: postgres
threads: 1
host: "{{ env_var('DBHOST') }}"
port: "{{ env_var('DBPORT') | as_number }}"
user: "{{ env_var('DBUSER') }}"
password: "{{ env_var('DBPASSWORD') }}"
dbname: "{{ env_var('DBNAME') }}"
schema: dbt_prod

prod:
type: postgres
threads: 1
Expand Down

0 comments on commit ca4f5b0

Please sign in to comment.