Skip to content

Commit

Permalink
fix: Address dbt deprecation warning by moving config from the profil…
Browse files Browse the repository at this point in the history
…es to `dbt_project.yml`
  • Loading branch information
edgarrmondragon committed Aug 1, 2024
1 parent 82142a2 commit 3f70700
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 12 deletions.
3 changes: 3 additions & 0 deletions dbt_ext/dbt_files/bundle/transform/dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ version: '1.0'
profile: meltano
config-version: 2
require-dbt-version: [">=1.0.0", "<2.0.0"]
flags:
send_anonymous_usage_stats: False
use_colors: True
model-paths:
- models
analysis-paths:
Expand Down
3 changes: 0 additions & 3 deletions dbt_ext/dbt_files/profiles/duckdb/profiles.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
config:
send_anonymous_usage_stats: False
use_colors: True
meltano:
target: "{{ env_var('MELTANO_ENVIRONMENT', 'dev') }}"
outputs:
Expand Down
3 changes: 0 additions & 3 deletions dbt_ext/dbt_files/profiles/postgres/profiles.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Postgres config reference:
config:
send_anonymous_usage_stats: False
use_colors: True
meltano:
target: "{{ env_var('MELTANO_ENVIRONMENT', 'dev') }}"
outputs:
Expand Down
3 changes: 0 additions & 3 deletions dbt_ext/dbt_files/profiles/redshift/profiles.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
config:
send_anonymous_usage_stats: False
use_colors: True
meltano:
target: "{{ env_var('MELTANO_ENVIRONMENT', 'dev') }}"
outputs:
Expand Down
3 changes: 0 additions & 3 deletions dbt_ext/dbt_files/profiles/snowflake/profiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
#
# Warning: Do not store credentials in this file unless you've take the necessary steps to remove
# this file from your git commit.
config:
send_anonymous_usage_stats: False
use_colors: True
meltano:
target: "{{ env_var('MELTANO_ENVIRONMENT', 'dev') }}" # The default profile name if no other profile is selected.
outputs:
Expand Down

0 comments on commit 3f70700

Please sign in to comment.