Commit 9360bdc 1 parent 40ee54f commit 9360bdc Copy full SHA for 9360bdc
File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 193
193
# Validate TLS certificate if using TLS/SSL
194
194
("DBT_PROFILE_VERIFY" , "True" ),
195
195
# Use TLS (native protocol) or HTTPS (http protocol)
196
- ("DBT_PROFILE_SECURE" , "False " ),
196
+ ("DBT_PROFILE_SECURE" , "{{ CLICKHOUSE_SECURE_CONNECTION }} " ),
197
197
# Number of times to retry a "retryable" database exception (such as a 503
198
198
# 'Service Unavailable' error)
199
199
("DBT_PROFILE_RETRIES" , "3" ),
Original file line number Diff line number Diff line change @@ -16,4 +16,4 @@ echo "Installing dbt dependencies"
16
16
dbt deps --profiles-dir /app/aspects/dbt/
17
17
18
18
echo " Running dbt $* "
19
- dbt " $@ " --profiles-dir /app/aspects/dbt/
19
+ XAPI_SCHEMA={{ ASPECTS_XAPI_DATABASE }} ASPECTS_ENROLLMENT_EVENTS_TABLE={{ ASPECTS_ENROLLMENT_EVENTS_TABLE }} dbt " $@ " --profiles-dir /app/aspects/dbt/
Original file line number Diff line number Diff line change @@ -16,4 +16,4 @@ echo "Installing dbt dependencies"
16
16
dbt deps --profiles-dir /app/aspects/dbt/
17
17
18
18
echo " Running dbt"
19
- dbt run --profiles-dir /app/aspects/dbt/
19
+ XAPI_SCHEMA={{ ASPECTS_XAPI_DATABASE }} ASPECTS_ENROLLMENT_EVENTS_TABLE={{ ASPECTS_ENROLLMENT_EVENTS_TABLE }} dbt run --profiles-dir /app/aspects/dbt/
You can’t perform that action at this time.
0 commit comments