Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
laysabit committed Mar 13, 2024
1 parent fadfa4a commit 2546594
Showing 1 changed file with 57 additions and 1 deletion.
58 changes: 57 additions & 1 deletion profiles.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,36 @@
stellar_dbt:
target: "{{ env_var('DBT_TARGET') }}"
outputs:
prod: &default
dataset: "{{ env_var('DBT_DATASET') }}"
project: "{{ env_var('DBT_PROJECT') }}"
maximum_bytes_billed: "{{ env_var('DBT_MAX_BYTES_BILLED') | as_number }}"
job_execution_timeout_seconds: "{{ env_var('DBT_JOB_TIMEOUT') | int }}"
threads: "{{ env_var('DBT_THREADS') | int }}"
job_retries: "{{ env_var('DBT_JOB_RETRIES') | int }}"
priority: interactive
location: us
method: oauth
type: bigquery
test:
<<: *default
jenkins:
dataset: "{{ env_var('DBT_DATASET') }}"
maximum_bytes_billed: "{{ env_var('DBT_MAX_BYTES_BILLED') | as_number }}"
job_execution_timeout_seconds: "{{ env_var('DBT_JOB_TIMEOUT') | int }}"
threads: "{{ env_var('DBT_THREADS') | int }}"
job_retries: "{{ env_var('DBT_JOB_RETRIES') | int }}"
priority: interactive
location: us
type: bigquery
project: test-hubble-319619
keyfile: /stellar-dbt/service_account.json
method: service-account

stellar_dbt_public:
target: "{{ env_var('DBT_TARGET') }}"
outputs:
development:
prod:
dataset: "crypto_stellar"
maximum_bytes_billed: "{{ env_var('DBT_MAX_BYTES_BILLED') | as_number }}"
job_execution_timeout_seconds: "{{ env_var('DBT_JOB_TIMEOUT') | int }}"
Expand All @@ -14,4 +43,31 @@ stellar_dbt_public:
type: bigquery
test:
<<: *default
jenkins:
dataset: "{{ env_var('PUBLIC_SOURCE_SCHEMA') }}"
maximum_bytes_billed: "{{ env_var('DBT_MAX_BYTES_BILLED') | as_number }}"
job_execution_timeout_seconds: "{{ env_var('DBT_JOB_TIMEOUT') | int }}"
threads: "{{ env_var('DBT_THREADS') | int }}"
job_retries: "{{ env_var('DBT_JOB_RETRIES') | int }}"
priority: interactive
location: us
type: bigquery
project: test-hubble-319619
keyfile: /stellar-dbt/service_account.json
method: service-account

elementary:
target: "elementary"
outputs:
elementary:
dataset: "{{ env_var('DBT_DATASET') }}"
project: "{{ env_var('DBT_PROJECT') }}"
maximum_bytes_billed: "{{ env_var('DBT_MAX_BYTES_BILLED') | as_number }}"
job_execution_timeout_seconds: "{{ env_var('DBT_JOB_TIMEOUT') | int }}"
threads: "{{ env_var('DBT_THREADS') | int }}"
job_retries: "{{ env_var('DBT_JOB_RETRIES') | int }}"
priority: interactive
location: us
method: oauth
type: bigquery

0 comments on commit 2546594

Please sign in to comment.