2019-10-16 19:46:43 +00:00
|
|
|
|
---
|
2020-01-18 00:18:09 +00:00
|
|
|
|
layout: api
|
|
|
|
|
page_title: /sys/sealwrap/rewrap - HTTP API
|
|
|
|
|
description: >-
|
|
|
|
|
The `/sys/sealwrap/rewrap` endpoint is used to rewrap all seal wrapped
|
|
|
|
|
entries.
|
2019-10-16 19:46:43 +00:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# `/sys/sealwrap/rewrap`
|
|
|
|
|
|
|
|
|
|
~> **Enterprise Only** – These endpoints require Vault Enterprise.
|
|
|
|
|
|
|
|
|
|
The `/sys/sealwrap/rewrap` endpoint is used to rewrap all seal wrapped entries.
|
2019-10-17 18:01:17 +00:00
|
|
|
|
This is useful when you want to upgrade seal wrapped entries to use the latest
|
|
|
|
|
key, for example, after a seal migration or after rotating the remote keyring.
|
2019-10-16 19:46:43 +00:00
|
|
|
|
|
|
|
|
|
## Read Rewrap Status
|
|
|
|
|
|
|
|
|
|
This endpoint reports whether a seal rewrap process is currently running.
|
|
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :----- | :--------------------- |
|
|
|
|
|
| `GET` | `/sys/sealwrap/rewrap` |
|
2019-10-16 19:46:43 +00:00
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
|
```shell-session
|
2019-10-16 19:46:43 +00:00
|
|
|
|
$ curl \
|
|
|
|
|
--header "X-Vault-Token: ..." \
|
|
|
|
|
http://127.0.0.1:8200/v1/sys/sealwrap/rewrap
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"data": {
|
|
|
|
|
"entries": {
|
|
|
|
|
"failed": 0,
|
|
|
|
|
"processed": 30,
|
|
|
|
|
"succeeded": 30
|
|
|
|
|
},
|
|
|
|
|
"is_running": false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Start a Seal Rewrap Process
|
|
|
|
|
|
|
|
|
|
This endpoint starts a seal rewrap process if one is not currently running.
|
|
|
|
|
The process will run in the background. Check the vault server logs for status
|
|
|
|
|
and progress updates.
|
|
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :----- | :--------------------- |
|
|
|
|
|
| `POST` | `/sys/sealwrap/rewrap` |
|
2019-10-16 19:46:43 +00:00
|
|
|
|
|
|
|
|
|
The default status codes are:
|
|
|
|
|
|
|
|
|
|
- `200` if a seal rewrap process is already running
|
|
|
|
|
- `204` if a seal rewrap process was started
|
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
|
```shell-session
|
2019-10-16 19:46:43 +00:00
|
|
|
|
$ curl \
|
|
|
|
|
--header "X-Vault-Token: ..." \
|
|
|
|
|
--request POST \
|
|
|
|
|
http://127.0.0.1:8200/v1/sys/sealwrap/rewrap
|
|
|
|
|
```
|