2017-11-08 19:22:30 +00:00
|
|
|
|
---
|
|
|
|
|
layout: "api"
|
|
|
|
|
page_title: "/sys/rekey-recovery-key - HTTP API"
|
2018-10-29 19:58:37 +00:00
|
|
|
|
sidebar_title: "<code>/sys/rekey-recovery-key</code>"
|
New Docs Website (#5535)
* conversion stage 1
* correct image paths
* add sidebar title to frontmatter
* docs/concepts and docs/internals
* configuration docs and multi-level nav corrections
* commands docs, index file corrections, small item nav correction
* secrets converted
* auth
* add enterprise and agent docs
* add extra dividers
* secret section, wip
* correct sidebar nav title in front matter for apu section, start working on api items
* auth and backend, a couple directory structure fixes
* remove old docs
* intro side nav converted
* reset sidebar styles, add hashi-global-styles
* basic styling for nav sidebar
* folder collapse functionality
* patch up border length on last list item
* wip restructure for content component
* taking middleman hacking to the extreme, but its working
* small css fix
* add new mega nav
* fix a small mistake from the rebase
* fix a content resolution issue with middleman
* title a couple missing docs pages
* update deps, remove temporary markup
* community page
* footer to layout, community page css adjustments
* wip downloads page
* deps updated, downloads page ready
* fix community page
* homepage progress
* add components, adjust spacing
* docs and api landing pages
* a bunch of fixes, add docs and api landing pages
* update deps, add deploy scripts
* add readme note
* update deploy command
* overview page, index title
* Update doc fields
Note this still requires the link fields to be populated -- this is solely related to copy on the description fields
* Update api_basic_categories.yml
Updated API category descriptions. Like the document descriptions you'll still need to update the link headers to the proper target pages.
* Add bottom hero, adjust CSS, responsive friendly
* Add mega nav title
* homepage adjustments, asset boosts
* small fixes
* docs page styling fixes
* meganav title
* some category link corrections
* Update API categories page
updated to reflect the second level headings for api categories
* Update docs_detailed_categories.yml
Updated to represent the existing docs structure
* Update docs_detailed_categories.yml
* docs page data fix, extra operator page remove
* api data fix
* fix makefile
* update deps, add product subnav to docs and api landing pages
* Rearrange non-hands-on guides to _docs_
Since there is no place for these on learn.hashicorp, we'll put them
under _docs_.
* WIP Redirects for guides to docs
* content and component updates
* font weight hotfix, redirects
* fix guides and intro sidenavs
* fix some redirects
* small style tweaks
* Redirects to learn and internally to docs
* Remove redirect to `/vault`
* Remove `.html` from destination on redirects
* fix incorrect index redirect
* final touchups
* address feedback from michell for makefile and product downloads
2018-10-19 15:40:11 +00:00
|
|
|
|
sidebar_current: "api-http-system-rekey-recovery-key"
|
2017-11-08 19:22:30 +00:00
|
|
|
|
description: |-
|
|
|
|
|
The `/sys/rekey-recovery-key` endpoints are used to rekey the recovery keys for Vault.
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# `/sys/rekey-recovery-key`
|
|
|
|
|
|
|
|
|
|
~> **Note:** These endpoints are only applicable to seals that support recovery keys.
|
|
|
|
|
|
|
|
|
|
The `/sys/rekey-recovery-key` endpoints are used to rekey the recovery keys for Vault.
|
|
|
|
|
|
|
|
|
|
## Read Rekey Progress
|
|
|
|
|
|
|
|
|
|
This endpoint reads the configuration and progress of the current rekey attempt.
|
|
|
|
|
|
2019-03-22 16:15:37 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :---------------------------------------- | :--------------------- |
|
|
|
|
|
| `GET` | `/sys/rekey-recovery-key/init` |
|
2017-11-08 19:22:30 +00:00
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ curl \
|
|
|
|
|
--header "X-Vault-Token: ..." \
|
2018-03-23 15:41:51 +00:00
|
|
|
|
http://127.0.0.1:8200/v1/sys/rekey-recovery-key/init
|
2017-11-08 19:22:30 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"started": true,
|
|
|
|
|
"nonce": "2dbd10f1-8528-6246-09e7-82b25b8aba63",
|
|
|
|
|
"t": 3,
|
|
|
|
|
"n": 5,
|
|
|
|
|
"progress": 1,
|
|
|
|
|
"required": 3,
|
|
|
|
|
"pgp_fingerprints": ["abcd1234"],
|
2018-05-21 16:00:36 +00:00
|
|
|
|
"backup": true,
|
|
|
|
|
"verification_required": false
|
2017-11-08 19:22:30 +00:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
If a rekey is started, then `n` is the new shares to generate and `t` is the
|
|
|
|
|
threshold required for the new shares. `progress` is how many recovery keys have
|
|
|
|
|
been provided for this rekey, where `required` must be reached to complete. The
|
|
|
|
|
`nonce` for the current rekey operation is also displayed. If PGP keys are being
|
|
|
|
|
used to encrypt the final shares, the key fingerprints and whether the final
|
|
|
|
|
keys will be backed up to physical storage will also be displayed.
|
2018-05-21 16:00:36 +00:00
|
|
|
|
`verification_required` indicates whether verification was enabled for this
|
|
|
|
|
operation.
|
2017-11-08 19:22:30 +00:00
|
|
|
|
|
|
|
|
|
## Start Rekey
|
|
|
|
|
|
|
|
|
|
This endpoint initializes a new rekey attempt. Only a single recovery key rekey
|
|
|
|
|
attempt can take place at a time, and changing the parameters of a rekey
|
|
|
|
|
requires canceling and starting a new rekey, which will also provide a new
|
|
|
|
|
nonce.
|
|
|
|
|
|
2019-03-22 16:15:37 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :---------------------------------------- | :--------------------- |
|
|
|
|
|
| `PUT` | `/sys/rekey-recovery-key/init` |
|
2017-11-08 19:22:30 +00:00
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
- `secret_shares` `(int: <required>)` – Specifies the number of shares to split
|
|
|
|
|
the recovery key into.
|
|
|
|
|
|
|
|
|
|
- `secret_threshold` `(int: <required>)` – Specifies the number of shares
|
|
|
|
|
required to reconstruct the recovery key. This must be less than or equal to
|
|
|
|
|
`secret_shares`.
|
|
|
|
|
|
|
|
|
|
- `pgp_keys` `(array<string>: nil)` – Specifies an array of PGP public keys used
|
|
|
|
|
to encrypt the output recovery key shares. Ordering is preserved. The keys must be
|
|
|
|
|
base64-encoded from their original binary representation. The size of this
|
|
|
|
|
array must be the same as `secret_shares`.
|
|
|
|
|
|
|
|
|
|
- `backup` `(bool: false)` – Specifies if using PGP-encrypted keys, whether
|
|
|
|
|
Vault should also store a plaintext backup of the PGP-encrypted keys at
|
|
|
|
|
`core/recovery-keys-backup` in the physical storage backend. These can then
|
|
|
|
|
be retrieved and removed via the `sys/rekey-recovery-key/backup` endpoint.
|
|
|
|
|
|
2018-05-21 16:00:36 +00:00
|
|
|
|
- `require_verification` `(bool: false)` – This turns on verification
|
|
|
|
|
functionality. When verification is turned on, after successful authorization
|
|
|
|
|
with the current unseal keys, the new unseal keys are returned but the
|
|
|
|
|
recovery key is not actually rotated. The new keys must be provided to
|
|
|
|
|
authorize the actual rotation of the key. This ensures that the new keys have
|
|
|
|
|
been successfully saved and protects against a risk of the keys being lost
|
2018-05-22 19:12:12 +00:00
|
|
|
|
after rotation but before they can be persisted. This can be used with
|
|
|
|
|
without `pgp_keys`, and when used with it, it allows ensuring that the
|
|
|
|
|
returned keys can be successfully decrypted before committing to the new
|
|
|
|
|
shares, which the backup functionality does not provide.
|
2018-05-21 16:00:36 +00:00
|
|
|
|
|
2017-11-08 19:22:30 +00:00
|
|
|
|
### Sample Payload
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"secret_shares": 10,
|
|
|
|
|
"secret_threshold": 5
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ curl \
|
|
|
|
|
--header "X-Vault-Token: ..." \
|
|
|
|
|
--request PUT \
|
|
|
|
|
--data @payload.json \
|
2018-03-23 15:41:51 +00:00
|
|
|
|
http://127.0.0.1:8200/v1/sys/rekey-recovery-key/init
|
2017-11-08 19:22:30 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Cancel Rekey
|
|
|
|
|
|
|
|
|
|
This endpoint cancels any in-progress rekey. This clears the rekey settings as
|
|
|
|
|
well as any progress made. This must be called to change the parameters of the
|
2018-05-21 16:00:36 +00:00
|
|
|
|
rekey. Note: verification is still a part of a rekey. If rekeying is canceled
|
|
|
|
|
during the verification flow, the current unseal keys remain valid.
|
2017-11-08 19:22:30 +00:00
|
|
|
|
|
2019-03-22 16:15:37 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :---------------------------------------- | :--------------------- |
|
|
|
|
|
| `DELETE` | `/sys/rekey-recovery-key/init` |
|
2017-11-08 19:22:30 +00:00
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ curl \
|
|
|
|
|
--header "X-Vault-Token: ..." \
|
|
|
|
|
--request DELETE \
|
2018-03-23 15:41:51 +00:00
|
|
|
|
http://127.0.0.1:8200/v1/sys/rekey-recovery-key/init
|
2017-11-08 19:22:30 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Read Backup Key
|
|
|
|
|
|
|
|
|
|
This endpoint returns the backup copy of PGP-encrypted recovery key shares. The
|
|
|
|
|
returned value is the nonce of the rekey operation and a map of PGP key
|
|
|
|
|
fingerprint to hex-encoded PGP-encrypted key.
|
|
|
|
|
|
2019-03-22 16:15:37 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :---------------------------------------- | :--------------------- |
|
|
|
|
|
| `GET` | `/sys/rekey-recovery-key/backup` |
|
2017-11-08 19:22:30 +00:00
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ curl \
|
|
|
|
|
--header "X-Vault-Token: ..." \
|
2018-03-23 15:41:51 +00:00
|
|
|
|
http://127.0.0.1:8200/v1/sys/rekey-recovery-key/backup
|
2017-11-08 19:22:30 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"nonce": "2dbd10f1-8528-6246-09e7-82b25b8aba63",
|
|
|
|
|
"keys": {
|
|
|
|
|
"abcd1234": "..."
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Delete Backup Key
|
|
|
|
|
|
|
|
|
|
This endpoint deletes the backup copy of PGP-encrypted recovery key shares.
|
|
|
|
|
|
2019-03-22 16:15:37 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :---------------------------------------- | :--------------------- |
|
|
|
|
|
| `DELETE` | `/sys/rekey-recovery-key/backup` |
|
2017-11-08 19:22:30 +00:00
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ curl \
|
|
|
|
|
--header "X-Vault-Token" \
|
|
|
|
|
--request DELETE \
|
2018-03-23 15:41:51 +00:00
|
|
|
|
http://127.0.0.1:8200/v1/sys/rekey-recovery-key/backup
|
2017-11-08 19:22:30 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Submit Key
|
|
|
|
|
|
|
|
|
|
This endpoint is used to enter a single recovery key share to progress the rekey
|
|
|
|
|
of the Vault. If the threshold number of recovery key shares is reached, Vault
|
|
|
|
|
will complete the rekey. Otherwise, this API must be called multiple times until
|
|
|
|
|
that threshold is met. The rekey nonce operation must be provided with each
|
|
|
|
|
call.
|
|
|
|
|
|
2018-05-21 16:00:36 +00:00
|
|
|
|
When the operation is complete, this will return a response like the example
|
|
|
|
|
below; otherwise the response will be the same as the `GET` method against
|
2018-05-21 20:30:45 +00:00
|
|
|
|
`sys/rekey/init`, providing status on the operation itself.
|
2018-05-21 16:00:36 +00:00
|
|
|
|
|
|
|
|
|
If verification was requested, successfully completing this flow will
|
|
|
|
|
immediately put the operation into a verification state, and provide the nonce
|
|
|
|
|
for the verification operation.
|
|
|
|
|
|
2019-03-22 16:15:37 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :---------------------------------------- | :--------------------- |
|
|
|
|
|
| `PUT` | `/sys/rekey-recovery-key/update` |
|
2017-11-08 19:22:30 +00:00
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
- `key` `(string: <required>)` – Specifies a single recovery share key.
|
|
|
|
|
|
|
|
|
|
- `nonce` `(string: <required>)` – Specifies the nonce of the rekey operation.
|
|
|
|
|
|
|
|
|
|
### Sample Payload
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
2018-05-21 16:00:36 +00:00
|
|
|
|
"key": "AB32...",
|
|
|
|
|
"nonce": "abcd1234..."
|
2017-11-08 19:22:30 +00:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ curl \
|
|
|
|
|
--header "X-Vault-Token" \
|
|
|
|
|
--request PUT \
|
|
|
|
|
--data @payload.json \
|
2018-03-23 15:41:51 +00:00
|
|
|
|
http://127.0.0.1:8200/v1/sys/rekey-recovery-key/update
|
2017-11-08 19:22:30 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"complete": true,
|
|
|
|
|
"keys": ["one", "two", "three"],
|
|
|
|
|
"nonce": "2dbd10f1-8528-6246-09e7-82b25b8aba63",
|
|
|
|
|
"pgp_fingerprints": ["abcd1234"],
|
|
|
|
|
"keys_base64": ["base64keyvalue"],
|
2018-05-21 16:00:36 +00:00
|
|
|
|
"backup": true,
|
|
|
|
|
"verification_required": true,
|
|
|
|
|
"verification_nonce": "8b112c9e-2738-929d-bcc2-19aff249ff10"
|
2017-11-08 19:22:30 +00:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
If the keys are PGP-encrypted, an array of key fingerprints will also be
|
|
|
|
|
provided (with the order in which the keys were used for encryption) along with
|
|
|
|
|
whether or not the keys were backed up to physical storage.
|
2018-05-21 16:00:36 +00:00
|
|
|
|
|
|
|
|
|
## Read Rekey Recovery Key Verification Progress
|
|
|
|
|
|
|
|
|
|
This endpoint reads the configuration and progress of the current rekey
|
|
|
|
|
verification attempt.
|
|
|
|
|
|
2019-03-22 16:15:37 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :------------------------------------------ | :--------------------- |
|
|
|
|
|
| `GET` | `/sys/rekey-recovery-key/verify` |
|
2018-05-21 16:00:36 +00:00
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ curl \
|
|
|
|
|
--header "X-Vault-Token: ..." \
|
|
|
|
|
http://127.0.0.1:8200/v1/sys/rekey-recovery-key/verify
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"nonce": "8b112c9e-2738-929d-bcc2-19aff249ff10",
|
|
|
|
|
"t": 3,
|
|
|
|
|
"n": 5,
|
|
|
|
|
"progress": 1
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
`n` is the total number of new shares that were generated and `t` is the
|
|
|
|
|
threshold required for the new shares to pass verification. `progress` is how
|
|
|
|
|
many of the new unseal keys have been provided for this verification operation.
|
|
|
|
|
The `nonce` for the current rekey operation is also displayed.
|
|
|
|
|
|
|
|
|
|
## Cancel Rekey Verification
|
|
|
|
|
|
|
|
|
|
This endpoint cancels any in-progress rekey verification operation. This clears
|
|
|
|
|
any progress made and resets the nonce. Unlike a `DELETE` against
|
|
|
|
|
`sys/rekey-recovery-key/init`, this only resets the current verification
|
|
|
|
|
operation, not the entire rekey atttempt. The return value is the same as `GET`
|
|
|
|
|
along with the new nonce.
|
|
|
|
|
|
2019-03-22 16:15:37 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :------------------------------------------ | :--------------------- |
|
2018-05-21 16:00:36 +00:00
|
|
|
|
| `DELETE` | `/sys/rekey-recovery-key/verify` | `200 (empty body)` |
|
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ curl \
|
|
|
|
|
--header "X-Vault-Token" \
|
|
|
|
|
--request DELETE \
|
|
|
|
|
http://127.0.0.1:8200/v1/sys/rekey-recovery-key/verify
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"nonce": "5827bbc1-0110-5725-cc21-beddc129d942",
|
|
|
|
|
"t": 3,
|
|
|
|
|
"n": 5,
|
|
|
|
|
"progress": 0
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Submit Verification Key
|
|
|
|
|
|
|
|
|
|
This endpoint is used to enter a single new key share to progress the rekey
|
|
|
|
|
verification operation. If the threshold number of new key shares is reached,
|
|
|
|
|
Vault will complete the rekey by performing the actual rotation of the recovery
|
|
|
|
|
key. Otherwise, this API must be called multiple times until that threshold is
|
|
|
|
|
met. The nonce must be provided with each call.
|
|
|
|
|
|
|
|
|
|
When the operation is complete, this will return a response like the example
|
|
|
|
|
below; otherwise the response will be the same as the `GET` method against
|
|
|
|
|
`sys/rekey-recovery-key/verify`, providing status on the operation itself.
|
|
|
|
|
|
2019-03-22 16:15:37 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :---------------------------------------- | :--------------------- |
|
|
|
|
|
| `PUT` | `/sys/rekey-recovery-key/verify` |
|
2018-05-21 16:00:36 +00:00
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
- `key` `(string: <required>)` – Specifies a single recovery share key from the
|
|
|
|
|
new set of shares.
|
|
|
|
|
|
|
|
|
|
- `nonce` `(string: <required>)` – Specifies the nonce of the rekey
|
|
|
|
|
verification operation.
|
|
|
|
|
|
|
|
|
|
### Sample Payload
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"key": "A58d...",
|
|
|
|
|
"nonce": "5a27bbc1..."
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ curl \
|
|
|
|
|
--header "X-Vault-Token" \
|
|
|
|
|
--request PUT \
|
|
|
|
|
--data @payload.json \
|
|
|
|
|
http://127.0.0.1:8200/v1/sys/rekey-recovery-key/verify
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"nonce": "5827bbc1-0110-5725-cc21-beddc129d942",
|
|
|
|
|
"complete": true
|
|
|
|
|
}
|
|
|
|
|
```
|