Skip to content

Commit

Permalink
chore: Fix dbt-bigquery auth_method setting in profile
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Jan 30, 2024
1 parent c4b9b12 commit a3f1abf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions files_dbt_ext/profiles/bigquery/profiles.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ meltano:
keyfile: "{{ env_var('DBT_BIGQUERY_KEYFILE', '') }}"
staging:
type: bigquery
method: "{{ env_var('DBT_BIGQUERY_METHOD') }}"
method: "{{ env_var('DBT_BIGQUERY_AUTH_METHOD') }}"
project: "{{ env_var('DBT_BIGQUERY_PROJECT') }}"
dataset: "{{ env_var('DBT_BIGQUERY_DATASET') }}"
threads: 4
Expand All @@ -28,7 +28,7 @@ meltano:
keyfile: "{{ env_var('DBT_BIGQUERY_KEYFILE', '') }}"
prod:
type: bigquery
method: "{{ env_var('DBT_BIGQUERY_METHOD') }}"
method: "{{ env_var('DBT_BIGQUERY_AUTH_METHOD') }}"
project: "{{ env_var('DBT_BIGQUERY_PROJECT') }}"
dataset: "{{ env_var('DBT_BIGQUERY_DATASET') }}"
threads: 6
Expand Down

0 comments on commit a3f1abf

Please sign in to comment.