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
We run infisical in CI to set secrets generated by a deployment, e.g.
infisical secrets set foo=bar
infisical prints the following to our job logs
┌─────────────┬──────────────┬────────────────┐
│ SECRET NAME │ SECRET VALUE │ STATUS │
├─────────────┼──────────────┼────────────────┤
│ foo │ bar │ SECRET CREATED │
└─────────────┴──────────────┴────────────────┘
Preferably this should not be the default, because secrets belong in infisical, not in the output.
Alternatively, there should be a --quiet flag (and a INFISICAL_QUIET env var) to suppress this output
Workaround
infisical secrets set foo=bar >/dev/null
The text was updated successfully, but these errors were encountered:
We run infisical in CI to set secrets generated by a deployment, e.g.
infisical prints the following to our job logs
Preferably this should not be the default, because secrets belong in infisical, not in the output.
Alternatively, there should be a
--quiet
flag (and aINFISICAL_QUIET
env var) to suppress this outputWorkaround
The text was updated successfully, but these errors were encountered: