I want to run something like Helmsman which takes environment variables and substitutes them into a template. I want to be able to use the variables defined in Taskvars.yml in the environment but I don't have to have to explicitly include each one like:
tasks:
test:
env:
ENV1: {{.ENV1}}
ENV2: {{.ENV2}}
cmds:
- helmsman
is there a way to do something like:
tasks:
test:
env:
setAllVariablesToEnvironment: true
cmds:
- helmsman