Is there a way to hide variables from being output in Tasks? #3524
Replies: 1 comment 1 reply
-
I'm wondering how this could be implemented, here's my first thought: [tasks.tfcmods]
description = "Show the latest versions of TFC modules"
run = """
curl -s --header "Authorization: Bearer {{env.TFC_GROUP_TOKEN_DEV | redact}}"
""" but then I thought you probably want to redact it from anything mise outputs so we should have this at a higher level, maybe like this: [redactions]
env = ["TFC_GROUP_TOKEN_DEV"] |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I created a simple mise task to test it out:
When ran, the token is displayed in output. Is there a way to not display variable values during tasks?
Beta Was this translation helpful? Give feedback.
All reactions