You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like support for secret variables. By this I mean that the value isn't shown when you run envman print.
Use case for this is to print the env in a CI pipeline so it's easier to see why your build is failing but I'd like to hide credentials from developers.
This commit seems to add support for what I'm asking but I'm not sure what is does. I tried to set this field but the value was still printed:
envs:
- SECRET: password
opts:
is_sensitive: true
Workaround could be to use something like envman print | grep -v SECRET_VAR but a native solution would be nice.
The text was updated successfully, but these errors were encountered:
are you trying to set this up locally?
if the secret is set up properly, in the logs it should write [REDACTED] instead of the value
on secrets you can read more on our devcenter: https://devcenter.bitrise.io/bitrise-cli/secrets/
Hi,
I'd like support for secret variables. By this I mean that the value isn't shown when you run
envman print
.Use case for this is to print the env in a CI pipeline so it's easier to see why your build is failing but I'd like to hide credentials from developers.
This commit seems to add support for what I'm asking but I'm not sure what is does. I tried to set this field but the value was still printed:
Workaround could be to use something like
envman print | grep -v SECRET_VAR
but a native solution would be nice.The text was updated successfully, but these errors were encountered: