Add CLI commands for interacting with a secret store #3
Labels
kind/feature
Categorizes issue or PR as related to a new feature.
lifecycle/keep
Denotes an issue or PR that should be preserved from going stale.
Milestone
Idea
A user should be able to interact with a generic secret store though CLI.
Strategy
Following commands should be supported:
store get-secret --key "key"
store set-secret --key "key" --data "data"
store list-secrets --path "path"
For now, handle auth by loading store from a file pointed by either
SECRET_STORE_AUTH_FILEPATH
env var, or provided via--store
flag in these commands.Future
Add flags to contextually load/switch between stores, e.g.
store load NAME --from-file PATH
to add a new store to local storagestore use STORE
to use a specific storeThis would require having a persistent local storage with stores for
(ID, Name, Filepath)
tuplesThe text was updated successfully, but these errors were encountered: