๐Ÿ“ฆ pgoslatara / dbt-beyond-the-basics

๐Ÿ“„ profiles.yml ยท 30 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30beyond_basics:
  target: dev
  outputs:
    dev:
      type: bigquery
      dataset: "{{ env_var('DBT_DATASET') }}"
      job_retries: 3
      location: US
      method: oauth
      project: beyond-basics-dev
      threads: 64
    stg:
      type: bigquery
      dataset: "{{ env_var('DBT_DATASET') }}"
      job_retries: 3
      keyfile: ./service_account.json
      location: US
      method: service-account
      project: beyond-basics-stg
      threads: 64
    prd:
      type: bigquery
      dataset: "{{ env_var('DBT_DATASET') }}"
      job_retries: 3
      keyfile: ./service_account.json
      location: US
      method: service-account
      project: beyond-basics-prd
      threads: 64