[docs] Convert titles to sentense case (#21426)

* Convert documentation titles to sentense case

* Docker, Google, Foundry, Cloud proper case
This commit is contained in:
Anton Averchenkov
2023-06-30 19:22:07 -04:00
committed by GitHub
parent d01a3c1763
commit f4f0412b6a
589 changed files with 4744 additions and 4744 deletions

View File

@@ -6,7 +6,7 @@ description: >-
plugin system.
---
# Plugin Management
# Plugin management
External plugins are the components in Vault that can be implemented separately
from Vault's built-in plugins. These plugins can be either authentication or
@@ -20,7 +20,7 @@ Consul), Vault will automatically attempt to determine the `api_addr` as well.
Detailed information regarding the plugin system can be found in the
[internals documentation](/vault/docs/plugins).
## Registering External Plugins
## Registering external plugins
Before an external plugin can be mounted, it needs to be
[registered](/vault/docs/plugins/plugin-architecture#plugin-registration) in the
@@ -35,7 +35,7 @@ $ vault plugin register -sha256=<SHA256 Hex value of the plugin binary> \
Success! Registered plugin: passthrough-plugin
```
## Enabling/Disabling External Plugins
## Enabling/Disabling external plugins
After the plugin is registered, it can be mounted by specifying the registered
plugin name:
@@ -60,7 +60,7 @@ Disabling an external plugins is identical to disabling a built-in plugin:
$ vault secrets disable my-secrets
```
## Upgrading Plugins
## Upgrading plugins
Upgrade instructions can be found in the [Upgrading Plugins - Guides][upgrading_plugins]
page.