We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey 👋
This is a feature request.
I'd like to be able to unset all the secrets of an application at once.
# No secrets names unsets all secrets flyctl secrets unset # Alternatively, using a --all flag flyctl secrets unset --all
Either implementation could optionally prompt the user for confirmation in interactive sessions.
I'd be willing to contribute the feature, but just wanted to check if that's something you'd be open to.
Currently, I'm using the following workaround:
flyctl secrets unset $(flyctl secrets list --json | jq -r '[.[].Name] | join(" ")')
The text was updated successfully, but these errors were encountered:
enhancement: secrets unset-all
4d77391
- ref: superfly#3973 - desc: add runUnsetAll to secrets.New(); runUnsetAll uses client.GetAppSecrets, otherwise its the same code as runUnset
No branches or pull requests
Hey 👋
This is a feature request.
I'd like to be able to unset all the secrets of an application at once.
Either implementation could optionally prompt the user for confirmation in interactive sessions.
I'd be willing to contribute the feature, but just wanted to check if that's something you'd be open to.
Workaround
Currently, I'm using the following workaround:
The text was updated successfully, but these errors were encountered: