vault secrets list
vault secrets list -detailed
When running the kv secrets backend non-versioned, only the most recently written value for a key will be preserved.
vault secrets enable kv
cmd will mount the kv store in the default i.e kv
vault secrets enable -path=foobar kv
put, get, list, delete
vault kv put [secret-path] key=value
example: vault kv put foobar/my-secrets password=abc
vault kv get foobar/my-secrets
vault kv list foobar
keep adding the subpath to the superpath as you are using the above cmd until you get the complete full path
vault kv delete foobar/my-secrets
vault secrets disable foobar