cross-posting from the DBT Slack in case I can get...
# integration-dbt
r
cross-posting from the DBT Slack in case I can get some help here: in my
dbt_profile.yml
I'm setting a variable via
my-var: "{{ var('local-development', False) }}"
with
{{ debug() }}
I'm seeing:
Copy code
ipdb> l_1_var('local-development')
False
ipdb> l_1_var('my-var')
'False'
from this issue, I would expect the type within the Jinja template to be respected, but it's being cast to a string. how do I properly set
my-var
to a boolean? piping
| as_bool
doesn't work either