mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 15:11:07 +02:00
* Update README Let contributors know that docs will now be located in UDR * Add comments to each mdx doc Comment has been added to all mdx docs that are not partials * chore: added changelog changelog check failure * wip: removed changelog * Fix content errors * Doc spacing * Update website/content/docs/deploy/kubernetes/vso/helm.mdx Co-authored-by: Tu Nguyen <im2nguyen@users.noreply.github.com> --------- Co-authored-by: jonathanfrappier <92055993+jonathanfrappier@users.noreply.github.com> Co-authored-by: Tu Nguyen <im2nguyen@users.noreply.github.com>
49 lines
1.9 KiB
Plaintext
49 lines
1.9 KiB
Plaintext
---
|
|
layout: docs
|
|
page_title: unwrap - Command
|
|
description: |-
|
|
The "unwrap" command unwraps a wrapped secret from Vault by the given token.
|
|
The result is the same as the "vault read" operation on the non-wrapped
|
|
secret. If no token is given, the data in the currently authenticated token is
|
|
unwrapped.
|
|
---
|
|
|
|
> [!IMPORTANT]
|
|
> **Documentation Update:** Product documentation, which were located in this repository under `/website`, are now located in [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs), colocated with all other product documentation. Contributions to this content should be done in the `web-unified-docs` repo, and not this one. Changes made to `/website` content in this repo will not be reflected on the developer.hashicorp.com website.
|
|
|
|
# unwrap
|
|
|
|
The `unwrap` command unwraps a wrapped secret from Vault by the given token. The
|
|
result is the same as the "vault read" operation on the non-wrapped secret. If
|
|
no token is given, the data in the currently authenticated token is unwrapped.
|
|
|
|
## Examples
|
|
|
|
Unwrap the data in the cubbyhole secrets engine for a token:
|
|
|
|
```shell-session
|
|
$ vault unwrap 3de9ece1-b347-e143-29b0-dc2dc31caafd
|
|
```
|
|
|
|
Unwrap the data in the active token:
|
|
|
|
```shell-session
|
|
$ vault login 848f9ccf-7176-098c-5e2b-75a0689d41cd
|
|
$ vault unwrap # unwraps 848f9ccf...
|
|
```
|
|
|
|
## Usage
|
|
|
|
The following flags are available in addition to the [standard set of
|
|
flags](/vault/docs/commands) included on all commands.
|
|
|
|
### Output options
|
|
|
|
- `-field` `(string: "")` - Print only the field with the given name, in the format
|
|
specified in the `-format` directive. The result will not have a trailing
|
|
newline making it ideal for piping to other processes.
|
|
|
|
- `-format` `(string: "table")` - Print the output in the given format. Valid
|
|
formats are "table", "json", or "yaml". This can also be specified via the
|
|
`VAULT_FORMAT` environment variable.
|