Skip to content

Instantly share code, notes, and snippets.

@tuanchris
Last active August 21, 2021 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tuanchris/80b1b802ae25b6385d0d5b4f66cddb43 to your computer and use it in GitHub Desktop.
Save tuanchris/80b1b802ae25b6385d0d5b4f66cddb43 to your computer and use it in GitHub Desktop.
your_dbt_project: # Be sure to change this to your dbt project name
target: dev
outputs:
dev:
type: bigquery
method: service-account
keyfile: "{{ env_var('DBT_GOOGLE_BIGQUERY_KEYFILE_DEV') }}"
project: "{{ env_var('DBT_GOOGLE_PROJECT_DEV') }}"
dataset: "{{ env_var('DBT_GOOGLE_BIGQUERY_DATASET_DEV') }}"
threads: 32
timeout_seconds: 300
priority: interactive
prod:
type: bigquery
method: service-account
keyfile: "{{ env_var('DBT_GOOGLE_BIGQUERY_KEYFILE_PROD') }}"
project: "{{ env_var('DBT_GOOGLE_PROJECT_PROD') }}"
dataset: "{{ env_var('DBT_GOOGLE_BIGQUERY_DATASET_PROD') }}"
threads: 32
timeout_seconds: 300
priority: interactive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment