Global variables are printed to the logs when a build is ran, including tokens for other webhooks. I would like to be able to conceal a global variable's value from the log output.
A super-hacky way to do it could be to create a second global variable. So if the global variable you want to mask is:
APP_API_KEY
Then you could create another global variable named, say
APP_API_KEY_SECRET
and make its value the same as the value of the original.
Since Bamboo only really obscures the value of the variable in all cases where it finds it in log output, as long as the same string is the value of a variable that includes PASSWORD (or SECRET), then that works.
Incidentally, in a CI environment, we have a username/password combo for a local Oracle image set to oracle/oracle. Which means any time the literal 'oracle' appears anywhere in the logs, it is obscured with a bunch of *******. And if you have to use anything oracle related, and java related, well, you get a lot of ******** in the logs :)
jvelapol,
Thank you! my experience with Atlassian tools has resulted in lots of "super hackey" workarounds, and this is one for the books!
Thank you again!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oddly this is still not mentioned in the Bamboo variables documentation, but you can achieve this by adding a 'Password' suffix to sensitive variables (I think at least 'Secret' works too meanwhile, there may be a few more).
For example, if the variable key is "password", "awsAccessKeyPassword", or "awsSecretKeyPassword", the build log will show the substituted variable value as "********".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I noticed that as well and considered changing it, but am unsure as to the number of webhooks that would be impacted if I changed the variable name. Ideally I would keep the variable name the same, and just conceal the value in the log.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.