Daniel San
Daniel San

Reputation: 2036

How can masked pipeline environment variables be used?

Build tasks has variables section. There you can mask a variable. The problem is that, for example in node process.env.masked_var is undefined. So what is the purpose of the masked env variables or how should I access them properly?

Upvotes: 1

Views: 1424

Answers (1)

D.J.
D.J.

Reputation: 4034

The purpose of the secret variables is that someone defines values (like credentials) that should not be visible in logs or to other editors of the build/release-definitions. You can use the secret variables like any other variable in the inputfields but secret variables won't be set as environment-variables for the process.

If you realy need to use secret variables as environment-variable you need to use the 'commandline' task and map that variable to a environmentvariable in the 'Environment variables'-section of the task

Upvotes: 1

Related Questions