Even using the "sqlfluff.env.useDotEnvFile": true does not work as intended using a .env file like below. Ex:
# .env
DATABRICKS_TOKEN=${my_token}
How can we configure the extension to inherit an environment variable in some way? (for obvious reasons I wouldn't want to hardcode a token in my settings.json)
Unable to provide a token stored as an environment variable to this extension (
templater = dbt
,dialect = databricks
) :"terminal.integrated.env.osx"
. DBT's vscode extension uses this. Ex:"sqlfluff.env.environmentVariables"
, don't seem to support pulling in environment variables. Ex:"sqlfluff.env.useDotEnvFile": true
does not work as intended using a .env file like below. Ex:How can we configure the extension to inherit an environment variable in some way? (for obvious reasons I wouldn't want to hardcode a token in my
settings.json
)