The extension ignores the env variables when defining env variables in `tasks.json` as ``` { "version": "2.0.0", "tasks": [ { "appId": "my-app", "label": "daprd-debug-python", "type": "dapr", "args": [], "componentsPath": "./components", "appPort": 8080, "options": { "env": { "APP_API_TOKEN": "test", } }, } ] } ``` In my particular case, I want to always validate Dapr API token. There is no Dapr CLI argument to assign a token value. I assume there might be other use cases for using env variables like this.
The extension ignores the env variables when defining env variables in
tasks.jsonasIn my particular case, I want to always validate Dapr API token. There is no Dapr CLI argument to assign a token value.
I assume there might be other use cases for using env variables like this.