diff --git a/website/source/api/system/auth.html.md b/website/source/api/system/auth.html.md index eb9a61d79..01b793b40 100644 --- a/website/source/api/system/auth.html.md +++ b/website/source/api/system/auth.html.md @@ -74,13 +74,16 @@ For example, mounting the "foo" auth backend will make it accessible at - `type` `(string: )` – Specifies the name of the authentication backend type, such as "github" or "token". -Additionally, the following options are allowed in Vault open-source, but +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 +- `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. +- `plugin_name` `(string: "")` – Specifies the name of the auth plugin to + use based from the name in the plugin catalog. + ### Sample Payload ```json diff --git a/website/source/api/system/mounts.html.md b/website/source/api/system/mounts.html.md index 653bf58e3..94f6ab870 100644 --- a/website/source/api/system/mounts.html.md +++ b/website/source/api/system/mounts.html.md @@ -79,6 +79,7 @@ This endpoint mounts a new secret backend at the given path. - `default_lease_ttl` - `max_lease_ttl` - `force_no_cache` + - `plugin_name` These control the default and maximum lease time-to-live, and force disabling backend caching respectively. If set on a specific mount, this diff --git a/website/source/api/system/plugins-backend-reload.html.md b/website/source/api/system/plugins-backend-reload.html.md index 8b5fe6a18..68b36f58a 100644 --- a/website/source/api/system/plugins-backend-reload.html.md +++ b/website/source/api/system/plugins-backend-reload.html.md @@ -43,5 +43,5 @@ This endpoint reloads mounted plugin backends. $ curl \ --header "X-Vault-Token: ..." \ --request PUT - https://vault.rocks/v1/sys/backends/reload + https://vault.rocks/v1/sys/plugins/backend/reload ``` \ No newline at end of file