2017-03-15 02:40:33 -04:00
|
|
|
|
---
|
2017-03-17 14:06:03 -04:00
|
|
|
|
layout: "api"
|
2017-03-15 02:40:33 -04:00
|
|
|
|
page_title: "/sys/audit - HTTP API"
|
|
|
|
|
|
sidebar_current: "docs-http-system-audit/"
|
|
|
|
|
|
description: |-
|
2017-09-21 17:14:40 -04:00
|
|
|
|
The `/sys/audit` endpoint is used to enable and disable audit devices.
|
2017-03-15 02:40:33 -04:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
|
|
# `/sys/audit`
|
|
|
|
|
|
|
2017-09-21 17:14:40 -04:00
|
|
|
|
The `/sys/audit` endpoint is used to list, enable, and disable audit devices.
|
|
|
|
|
|
Audit devices must be enabled before use, and more than one device may be
|
2017-03-15 02:40:33 -04:00
|
|
|
|
enabled at a time.
|
|
|
|
|
|
|
2017-09-21 17:14:40 -04:00
|
|
|
|
## List Enabled Audit Devices
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
2017-09-21 17:14:40 -04:00
|
|
|
|
This endpoint lists only the enabled audit devices (it does not list all
|
|
|
|
|
|
available audit devices).
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
- **`sudo` required** – This endpoint requires `sudo` capability in addition to
|
|
|
|
|
|
any path-specific capabilities.
|
|
|
|
|
|
|
|
|
|
|
|
| Method | Path | Produces |
|
|
|
|
|
|
| :------- | :--------------------------- | :--------------------- |
|
|
|
|
|
|
| `GET` | `/sys/audit` | `200 application/json` |
|
|
|
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
$ curl \
|
|
|
|
|
|
--header "X-Vault-Token: ..." \
|
|
|
|
|
|
https://vault.rocks/v1/sys/audit
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
### Sample Response
|
|
|
|
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
|
|
{
|
|
|
|
|
|
"file": {
|
|
|
|
|
|
"type": "file",
|
|
|
|
|
|
"description": "Store logs in a file",
|
|
|
|
|
|
"options": {
|
|
|
|
|
|
"path": "/var/log/vault.log"
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
2017-09-21 17:14:40 -04:00
|
|
|
|
## Enable Audit Device
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
2017-09-21 17:14:40 -04:00
|
|
|
|
This endpoint enables a new audit device at the supplied path. The path can be a
|
2017-03-15 02:40:33 -04:00
|
|
|
|
single word name or a more complex, nested path.
|
|
|
|
|
|
|
|
|
|
|
|
- **`sudo` required** – This endpoint requires `sudo` capability in addition to
|
|
|
|
|
|
any path-specific capabilities.
|
|
|
|
|
|
|
|
|
|
|
|
| Method | Path | Produces |
|
|
|
|
|
|
| :------- | :--------------------------- | :--------------------- |
|
|
|
|
|
|
| `PUT` | `/sys/audit/:path` | `204 (empty body)` |
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
2017-09-21 17:14:40 -04:00
|
|
|
|
- `path` `(string: <required>)` – Specifies the path in which to enable the audit
|
|
|
|
|
|
device. This is part of the request URL.
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
- `description` `(string: "")` – Specifies a human-friendly description of the
|
2017-09-21 17:14:40 -04:00
|
|
|
|
audit device.
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
- `options` `(map<string|string>: nil)` – Specifies configuration options to
|
2017-09-21 17:14:40 -04:00
|
|
|
|
pass to the audit device itself. This is dependent on the audit device type.
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
2017-09-21 17:14:40 -04:00
|
|
|
|
- `type` `(string: <required>)` – Specifies the type of the audit device.
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
2017-04-28 14:33:27 -04:00
|
|
|
|
Additionally, the following options are allowed in Vault open-source, but
|
|
|
|
|
|
relevant functionality is only supported in Vault Enterprise:
|
|
|
|
|
|
|
2017-09-21 17:14:40 -04:00
|
|
|
|
- `local` `(bool: false)` – Specifies if the audit device is a local only. Local
|
|
|
|
|
|
audit devices are not replicated nor (if a secondary) removed by replication.
|
2017-04-28 14:33:27 -04:00
|
|
|
|
|
2017-03-15 02:40:33 -04:00
|
|
|
|
### Sample Payload
|
|
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
|
{
|
|
|
|
|
|
"type": "file",
|
|
|
|
|
|
"options": {
|
|
|
|
|
|
"path": "/var/log/vault/log"
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
$ curl \
|
|
|
|
|
|
--header "X-Vault-Token: ..." \
|
|
|
|
|
|
--request PUT \
|
|
|
|
|
|
--data @payload.json \
|
|
|
|
|
|
https://vault.rocks/v1/sys/audit/example-audit
|
|
|
|
|
|
```
|
|
|
|
|
|
|
2017-09-21 17:14:40 -04:00
|
|
|
|
## Disable Audit Device
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
2017-09-21 17:14:40 -04:00
|
|
|
|
This endpoint disables the audit device at the given path.
|
2017-03-15 02:40:33 -04:00
|
|
|
|
|
|
|
|
|
|
- **`sudo` required** – This endpoint requires `sudo` capability in addition to
|
|
|
|
|
|
any path-specific capabilities.
|
|
|
|
|
|
|
|
|
|
|
|
| Method | Path | Produces |
|
|
|
|
|
|
| :------- | :--------------------------- | :--------------------- |
|
|
|
|
|
|
| `DELETE` | `/sys/audit/:path` | `204 (empty body)` |
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
2017-09-21 17:14:40 -04:00
|
|
|
|
- `path` `(string: <required>)` – Specifies the path of the audit device to
|
2017-03-15 02:40:33 -04:00
|
|
|
|
delete. This is part of the request URL.
|
|
|
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
$ curl \
|
|
|
|
|
|
--header "X-Vault-Token: ..." \
|
|
|
|
|
|
--request DELETE \
|
|
|
|
|
|
https://vault.rocks/v1/sys/audit/example-audit
|
|
|
|
|
|
```
|