2019-10-29 20:42:47 +00:00
|
|
|
|
---
|
2020-01-18 00:18:09 +00:00
|
|
|
|
layout: api
|
|
|
|
|
page_title: /sys/generate-recovery-token - HTTP API
|
|
|
|
|
sidebar_title: <code>/sys/generate-recovery-token</code>
|
2019-10-29 20:42:47 +00:00
|
|
|
|
description: |-
|
|
|
|
|
The `/sys/generate-recovery-token/` endpoints are used to create a new
|
|
|
|
|
recovery token for Vault. They are only active in recovery mode.
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# `/sys/generate-recovery-token`
|
|
|
|
|
|
|
|
|
|
The `/sys/generate-recovery-token` endpoint is used to create a new recovery
|
|
|
|
|
token for Vault.
|
|
|
|
|
|
|
|
|
|
## Read Recovery Token Generation Progress
|
|
|
|
|
|
|
|
|
|
This endpoint reads the configuration and process of the current root generation
|
|
|
|
|
attempt.
|
|
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :----- | :------------------------------------- |
|
|
|
|
|
| `GET` | `/sys/generate-recovery-token/attempt` |
|
2019-10-29 20:42:47 +00:00
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
|
```shell-session
|
2019-10-29 20:42:47 +00:00
|
|
|
|
$ curl \
|
|
|
|
|
http://127.0.0.1:8200/v1/sys/generate-recovery-token/attempt
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"started": true,
|
|
|
|
|
"nonce": "2dbd10f1-8528-6246-09e7-82b25b8aba63",
|
|
|
|
|
"progress": 1,
|
|
|
|
|
"required": 3,
|
|
|
|
|
"encoded_token": "",
|
|
|
|
|
"pgp_fingerprint": "",
|
|
|
|
|
"otp_length": 24,
|
|
|
|
|
"complete": false
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
If a recovery token generation is started, `progress` is how many unseal keys
|
|
|
|
|
have been provided for this generation attempt, where `required` must be reached
|
|
|
|
|
to complete. The `nonce` for the current attempt and whether the attempt is
|
|
|
|
|
complete is also displayed.
|
|
|
|
|
|
|
|
|
|
If a PGP key is being used to encrypt the final root
|
|
|
|
|
token, its fingerprint will be returned.
|
|
|
|
|
|
|
|
|
|
If an OTP is being used to encode the final root token it will be returned only
|
|
|
|
|
once, on the response to the start request.
|
|
|
|
|
|
|
|
|
|
The OTP is a base62 string, with length of otp_length.
|
|
|
|
|
The raw bytes (char codes) of the token will be XOR'd with
|
2020-01-18 00:18:09 +00:00
|
|
|
|
this value before being returned as a response to the final unseal
|
2019-10-29 20:42:47 +00:00
|
|
|
|
key, encoded as base64.
|
|
|
|
|
|
|
|
|
|
## Start Recovery Token Generation
|
|
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
|
This endpoint initializes a new recovery token generation attempt. Only a single
|
|
|
|
|
recovery token generation attempt can take place at a time.
|
2019-10-29 20:42:47 +00:00
|
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :----- | :------------------------------------- |
|
|
|
|
|
| `PUT` | `/sys/generate-recovery-token/attempt` |
|
2019-10-29 20:42:47 +00:00
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
- `pgp_key` `(string: <optional>)` – Specifies a base64-encoded PGP public key.
|
|
|
|
|
The raw bytes of the token will be encrypted with this value before being
|
|
|
|
|
returned to the final unseal key provider.
|
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
|
```shell-session
|
2019-10-29 20:42:47 +00:00
|
|
|
|
$ curl \
|
|
|
|
|
--request PUT \
|
2020-01-18 00:18:09 +00:00
|
|
|
|
http://127.0.0.1:8200/v1/sys/generate-recovery-token/attempt
|
2019-10-29 20:42:47 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"started": true,
|
|
|
|
|
"nonce": "2dbd10f1-8528-6246-09e7-82b25b8aba63",
|
|
|
|
|
"progress": 1,
|
|
|
|
|
"required": 3,
|
|
|
|
|
"encoded_token": "",
|
|
|
|
|
"otp": "2vPFYG8gUSW9npwzyvxXMug0",
|
2020-01-18 00:18:09 +00:00
|
|
|
|
"otp_length": 24,
|
2019-10-29 20:42:47 +00:00
|
|
|
|
"complete": false
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Cancel Recovery Token Generation
|
|
|
|
|
|
|
|
|
|
This endpoint cancels any in-progress recovery token generation attempt. This
|
|
|
|
|
clears any progress made. This must be called to change the OTP or PGP key being
|
|
|
|
|
used.
|
|
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :------- | :------------------------------------- |
|
2019-10-29 20:42:47 +00:00
|
|
|
|
| `DELETE` | `/sys/generate-recovery-token/attempt` |
|
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
|
```shell-session
|
2019-10-29 20:42:47 +00:00
|
|
|
|
$ curl \
|
|
|
|
|
--request DELETE \
|
|
|
|
|
http://127.0.0.1:8200/v1/sys/generate-recovery-token/attempt
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Provide Key Share to Generate Recovery Token
|
|
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
|
This endpoint is used to enter a single master key share to progress the
|
2019-10-29 20:42:47 +00:00
|
|
|
|
recovery token generation attempt. If the threshold number of master key shares
|
|
|
|
|
is reached, Vault will complete the recovery token generation and issue the new
|
|
|
|
|
token. Otherwise, this API must be called multiple times until that threshold
|
|
|
|
|
is met. The attempt nonce must be provided with each call.
|
|
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
|
Note that once a token has been issued, Vault is unsealed. The token lives
|
2019-10-29 20:42:47 +00:00
|
|
|
|
only in memory and thus will only be valid until the next restart.
|
|
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :----- | :------------------------------------ |
|
|
|
|
|
| `PUT` | `/sys/generate-recovery-token/update` |
|
2019-10-29 20:42:47 +00:00
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
- `key` `(string: <required>)` – Specifies a single master key share.
|
|
|
|
|
|
|
|
|
|
- `nonce` `(string: <required>)` – Specifies the nonce of the attempt.
|
|
|
|
|
|
|
|
|
|
### Sample Payload
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"key": "acbd1234",
|
|
|
|
|
"nonce": "ad235"
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
|
```shell-session
|
2019-10-29 20:42:47 +00:00
|
|
|
|
$ curl \
|
|
|
|
|
--request PUT \
|
|
|
|
|
--data @payload.json \
|
|
|
|
|
http://127.0.0.1:8200/v1/sys/generate-recovery-token/update
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
|
|
This returns a JSON-encoded object indicating the attempt nonce, and completion
|
|
|
|
|
status, and the encoded recovery token, if the attempt is complete.
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"started": true,
|
|
|
|
|
"nonce": "2dbd10f1-8528-6246-09e7-82b25b8aba63",
|
|
|
|
|
"progress": 3,
|
|
|
|
|
"required": 3,
|
|
|
|
|
"pgp_fingerprint": "",
|
|
|
|
|
"complete": true,
|
|
|
|
|
"encoded_token": "FPzkNBvwNDeFh4SmGA8c+w=="
|
|
|
|
|
}
|
|
|
|
|
```
|