mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
* Adding vault kv command doc * Update website/source/docs/commands/kv/delete.html.md Co-Authored-By: Becca Petrin <beccapetrin@gmail.com> * Update website/source/docs/commands/kv/delete.html.md Co-Authored-By: Becca Petrin <beccapetrin@gmail.com> * Update website/source/docs/commands/kv/destroy.html.md Co-Authored-By: Becca Petrin <beccapetrin@gmail.com> * Update website/source/docs/commands/kv/destroy.html.md Co-Authored-By: Becca Petrin <beccapetrin@gmail.com> * Update website/source/docs/commands/kv/undelete.html.md Co-Authored-By: Becca Petrin <beccapetrin@gmail.com> * Update website/source/docs/commands/kv/delete.html.md Co-Authored-By: Becca Petrin <beccapetrin@gmail.com>
1.2 KiB
1.2 KiB
layout | page_title | sidebar_title | sidebar_current | description |
---|---|---|---|---|
docs | kv undelete - Command | <code>undelete</code> | docs-commands-kv-undelete | The "kv undelete" command undeletes the data for the provided version and path in the key-value store. This restores the data, allowing it to be returned on get requests. |
kv undelete
~> NOTE: This is a K/V Version 2 secrets engine command, and not available for Version 1.
The kv undelete
command undoes the deletes of the data for the provided version
and path in the key-value store. This restores the data, allowing it to be
returned on get requests.
Examples
Undelete version 3 of the key "creds":
$ vault kv undelete -versions=3 secret/creds
Success! Data written to: secret/undelete/creds
Usage
There are no flags beyond the standard set of flags included on all commands.
Output Options
-format
(string: "table")
- Print the output in the given format. Valid formats are "table", "json", or "yaml". This can also be specified via theVAULT_FORMAT
environment variable.
Command Options
-versions
([]int: <required>)
- Specifies the version number that should be made current again.