2017-03-15 06:40:33 +00:00
|
|
|
---
|
2020-01-18 00:18:09 +00:00
|
|
|
layout: api
|
|
|
|
page_title: /sys/rotate - HTTP API
|
|
|
|
sidebar_title: <code>/sys/rotate</code>
|
|
|
|
description: The `/sys/rotate` endpoint is used to rotate the encryption key.
|
2017-03-15 06:40:33 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# `/sys/rotate`
|
|
|
|
|
|
|
|
The `/sys/rotate` endpoint is used to rotate the encryption key.
|
|
|
|
|
|
|
|
## Rotate Encryption Key
|
|
|
|
|
|
|
|
This endpoint triggers a rotation of the backend encryption key. This is the key
|
|
|
|
that is used to encrypt data written to the storage backend, and is not provided
|
|
|
|
to operators. This operation is done online. Future values are encrypted with
|
|
|
|
the new key, while old values are decrypted with previous encryption keys.
|
|
|
|
|
2018-05-09 14:19:35 +00:00
|
|
|
This path requires `sudo` capability in addition to `update`.
|
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
| Method | Path |
|
|
|
|
| :----- | :------------ |
|
|
|
|
| `PUT` | `/sys/rotate` |
|
2017-03-15 06:40:33 +00:00
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
```shell-session
|
2017-03-15 06:40:33 +00:00
|
|
|
$ curl \
|
|
|
|
--header "X-Vault-Token: ..." \
|
|
|
|
--request PUT \
|
2018-03-23 15:41:51 +00:00
|
|
|
http://127.0.0.1:8200/v1/sys/rotate
|
2017-03-15 06:40:33 +00:00
|
|
|
```
|