2017-03-15 02:40:33 -04:00
|
|
|
|
---
|
2020-01-17 19:18:09 -05:00
|
|
|
|
layout: api
|
|
|
|
|
|
page_title: /sys/init - HTTP API
|
|
|
|
|
|
description: The `/sys/init` endpoint is used to initialize a new Vault.
|
2017-03-15 02:40:33 -04:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
|
|
# `/sys/init`
|
|
|
|
|
|
|
2023-09-21 15:07:25 -04:00
|
|
|
|
@include 'alerts/restricted-root.mdx'
|
|
|
|
|
|
|
2017-03-15 02:40:33 -04:00
|
|
|
|
The `/sys/init` endpoint is used to initialize a new Vault.
|
|
|
|
|
|
|
2023-06-30 19:22:07 -04:00
|
|
|
|
## Read initialization status
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
This endpoint returns the initialization status of Vault.
|
|
|
|
|
|
|
2020-01-17 19:18:09 -05:00
|
|
|
|
| Method | Path |
|
|
|
|
|
|
| :----- | :---------- |
|
|
|
|
|
|
| `GET` | `/sys/init` |
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
2023-06-30 19:22:07 -04:00
|
|
|
|
### Sample request
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
2020-05-21 13:18:17 -04:00
|
|
|
|
```shell-session
|
2017-03-15 02:40:33 -04:00
|
|
|
|
$ curl \
|
2018-03-23 11:41:51 -04:00
|
|
|
|
http://127.0.0.1:8200/v1/sys/init
|
2017-03-15 02:40:33 -04:00
|
|
|
|
```
|
|
|
|
|
|
|
2023-06-30 19:22:07 -04:00
|
|
|
|
### Sample response
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
|
{
|
|
|
|
|
|
"initialized": true
|
|
|
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
2023-06-30 19:22:07 -04:00
|
|
|
|
## Start initialization
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
This endpoint initializes a new Vault. The Vault must not have been previously
|
|
|
|
|
|
initialized. The recovery options, as well as the stored shares option, are only
|
2023-01-25 19:12:15 -05:00
|
|
|
|
available when using [Auto Unseal](/vault/docs/concepts/seal#auto-unseal).
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
2020-01-17 19:18:09 -05:00
|
|
|
|
| Method | Path |
|
|
|
|
|
|
| :----- | :---------- |
|
2022-02-25 09:52:24 -05:00
|
|
|
|
| `POST` | `/sys/init` |
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
|
|
- `pgp_keys` `(array<string>: nil)` – Specifies an array of PGP public keys used
|
|
|
|
|
|
to encrypt the output unseal keys. 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`.
|
|
|
|
|
|
|
|
|
|
|
|
- `root_token_pgp_key` `(string: "")` – Specifies a PGP public key used to
|
|
|
|
|
|
encrypt the initial root token. The key must be base64-encoded from its
|
|
|
|
|
|
original binary representation.
|
|
|
|
|
|
|
|
|
|
|
|
- `secret_shares` `(int: <required>)` – Specifies the number of shares to
|
2022-03-17 01:01:38 -04:00
|
|
|
|
split the root key into.
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
- `secret_threshold` `(int: <required>)` – Specifies the number of shares
|
2022-03-17 01:01:38 -04:00
|
|
|
|
required to reconstruct the root key. This must be less than or equal
|
2022-07-25 19:53:03 -04:00
|
|
|
|
`secret_shares`.
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
2021-10-06 16:35:35 -04:00
|
|
|
|
Additionally, the following options are only supported using Auto Unseal:
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
- `stored_shares` `(int: <required>)` – Specifies the number of shares that
|
|
|
|
|
|
should be encrypted by the HSM and stored for auto-unsealing. Currently must
|
|
|
|
|
|
be the same as `secret_shares`.
|
|
|
|
|
|
|
2022-11-10 15:43:11 -05:00
|
|
|
|
- `recovery_shares` `(int: 0)` – Specifies the number of shares to
|
|
|
|
|
|
split the recovery key into. This is only available when using Auto Unseal.
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
2022-11-10 15:43:11 -05:00
|
|
|
|
- `recovery_threshold` `(int: 0)` – Specifies the number of shares
|
2017-03-15 02:40:33 -04:00
|
|
|
|
required to reconstruct the recovery key. This must be less than or equal to
|
2022-11-10 15:43:11 -05:00
|
|
|
|
`recovery_shares`. This is only available when using Auto Unseal.
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
- `recovery_pgp_keys` `(array<string>: nil)` – Specifies an array of PGP public
|
|
|
|
|
|
keys used to encrypt the output recovery keys. Ordering is preserved. The keys
|
|
|
|
|
|
must be base64-encoded from their original binary representation. The size of
|
2022-11-10 15:43:11 -05:00
|
|
|
|
this array must be the same as `recovery_shares`. This is only available when using Auto Unseal.
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
2023-06-30 19:22:07 -04:00
|
|
|
|
### Sample payload
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
|
{
|
|
|
|
|
|
"secret_shares": 10,
|
|
|
|
|
|
"secret_threshold": 5
|
|
|
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
2023-06-30 19:22:07 -04:00
|
|
|
|
### Sample request
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
2020-05-21 13:18:17 -04:00
|
|
|
|
```shell-session
|
2017-03-15 02:40:33 -04:00
|
|
|
|
$ curl \
|
2022-02-25 09:52:24 -05:00
|
|
|
|
--request POST \
|
2017-06-07 10:02:58 -04:00
|
|
|
|
--data @payload.json \
|
2018-03-23 11:41:51 -04:00
|
|
|
|
http://127.0.0.1:8200/v1/sys/init
|
2017-03-15 02:40:33 -04:00
|
|
|
|
```
|
|
|
|
|
|
|
2023-06-30 19:22:07 -04:00
|
|
|
|
### Sample response
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
A JSON-encoded object including the (possibly encrypted, if `pgp_keys` was
|
2022-03-17 01:01:38 -04:00
|
|
|
|
provided) root keys, base 64 encoded root keys and initial root token:
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
|
{
|
|
|
|
|
|
"keys": ["one", "two", "three"],
|
|
|
|
|
|
"keys_base64": ["cR9No5cBC", "F3VLrkOo", "zIDSZNGv"],
|
|
|
|
|
|
"root_token": "foo"
|
|
|
|
|
|
}
|
|
|
|
|
|
```
|
2023-02-06 17:23:05 -05:00
|
|
|
|
|
|
|
|
|
|
-> **Warning:** Please be reminded that recovery keys are used as an
|
|
|
|
|
|
authentication flow for rekeying and regeneration of root credentials and cannot
|
|
|
|
|
|
be used to unseal Vault in the case of the unavailability of the seal mechanism.
|
|
|
|
|
|
Refer to the full warning in the documentation for
|
|
|
|
|
|
[Auto Unseal](/vault/docs/concepts/seal#auto-unseal).
|
|
|
|
|
|
|