Add local flag to docs for API endpoints. (#2625)
This commit is contained in:
parent
d0d448cfbe
commit
73867dab92
|
@ -71,6 +71,13 @@ single word name or a more complex, nested path.
|
||||||
|
|
||||||
- `type` `(string: <required>)` – Specifies the type of the audit backend.
|
- `type` `(string: <required>)` – Specifies the type of the audit backend.
|
||||||
|
|
||||||
|
Additionally, the following options are allowed in Vault open-source, but
|
||||||
|
relevant functionality is only supported in Vault Enterprise:
|
||||||
|
|
||||||
|
- `local` `(bool: false)` – Specifies if the audit backend is a local mount
|
||||||
|
only. Local mounts are not replicated nor (if a secondary) removed by
|
||||||
|
replication.
|
||||||
|
|
||||||
### Sample Payload
|
### Sample Payload
|
||||||
|
|
||||||
```json
|
```json
|
||||||
|
|
|
@ -74,6 +74,13 @@ For example, mounting the "foo" auth backend will make it accessible at
|
||||||
- `type` `(string: <required>)` – Specifies the name of the authentication
|
- `type` `(string: <required>)` – Specifies the name of the authentication
|
||||||
backend type, such as "github" or "token".
|
backend type, such as "github" or "token".
|
||||||
|
|
||||||
|
Additionally, the following options are allowed in Vault open-source, but
|
||||||
|
relevant functionality is only supported in Vault Enterprise:
|
||||||
|
|
||||||
|
- `local` `(bool: false)` – Specifies if the auth backend is a local mount
|
||||||
|
only. Local mounts are not replicated nor (if a secondary) removed by
|
||||||
|
replication.
|
||||||
|
|
||||||
### Sample Payload
|
### Sample Payload
|
||||||
|
|
||||||
```json
|
```json
|
||||||
|
|
|
@ -84,6 +84,13 @@ This endpoint mounts a new secret backend at the given path.
|
||||||
disabling backend caching respectively. If set on a specific mount, this
|
disabling backend caching respectively. If set on a specific mount, this
|
||||||
overrides the global defaults.
|
overrides the global defaults.
|
||||||
|
|
||||||
|
Additionally, the following options are allowed in Vault open-source, but
|
||||||
|
relevant functionality is only supported in Vault Enterprise:
|
||||||
|
|
||||||
|
- `local` `(bool: false)` – Specifies if the secret backend is a local mount
|
||||||
|
only. Local mounts are not replicated nor (if a secondary) removed by
|
||||||
|
replication.
|
||||||
|
|
||||||
### Sample Payload
|
### Sample Payload
|
||||||
|
|
||||||
```json
|
```json
|
||||||
|
|
Loading…
Reference in New Issue