2017-08-08 16:39:19 +00:00
|
|
|
---
|
|
|
|
layout: "guides"
|
|
|
|
page_title: "Plugin Backends - Guides"
|
2018-02-23 00:24:01 +00:00
|
|
|
sidebar_current: "guides-operations-plugin-backends"
|
2017-08-08 16:39:19 +00:00
|
|
|
description: |-
|
|
|
|
Learn how to build, register, and mount a custom plugin backend.
|
|
|
|
---
|
|
|
|
|
|
|
|
# Introduction
|
|
|
|
|
2018-02-01 17:50:59 +00:00
|
|
|
Plugin backends utilize the [plugin system][plugin-system] to enable third-party
|
|
|
|
secrets engines and auth methods.
|
2017-08-08 16:39:19 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
It is worth noting that even though [database secrets engines][database-backend]
|
2017-08-09 14:28:13 +00:00
|
|
|
operate under the same underlying plugin mechanism, they are slightly different
|
2018-02-01 17:50:59 +00:00
|
|
|
in design than plugin backends demonstrated in this guide. The database secrets
|
|
|
|
engine manages multiple plugins under the same backend mount point, whereas
|
|
|
|
plugin backends are kv backends that function as either secret or auth methods.
|
2017-08-08 16:39:19 +00:00
|
|
|
|
|
|
|
This guide provides steps to build, register, and mount non-database external
|
|
|
|
plugin backends.
|
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
## Setup Vault
|
2017-08-08 16:39:19 +00:00
|
|
|
|
|
|
|
Set `plugin_directory` to the desired path in the Vault configuration file.
|
|
|
|
The path should exist and have proper lockdown on access permissions.
|
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
```hcl
|
|
|
|
# /etc/vault/config.d/plugins.hcl
|
|
|
|
plugin_directory = "/etc/vault/vault_plugins"
|
2017-08-08 16:39:19 +00:00
|
|
|
```
|
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
If the Vault server is already running, you will need to tell it to reload its
|
|
|
|
configuration by sending SIGHUP. If you stop and start the Vault server, you
|
|
|
|
will need to unseal it again.
|
|
|
|
|
|
|
|
## Compile Plugin
|
2017-08-08 16:39:19 +00:00
|
|
|
|
2018-02-01 17:50:59 +00:00
|
|
|
Build the custom binary, and move it inside the `plugin_directory` path
|
|
|
|
configured above. This guide uses `mock-plugin` that comes from Vault's
|
|
|
|
[`logical/plugin/mock`](https://github.com/hashicorp/vault/tree/master/logical/plugin/mock/mock-plugin) package.
|
2017-08-08 16:39:19 +00:00
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
Download the source (you would probably use your own plugin):
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ go get -f -u -d github.com/hashicorp/vault
|
|
|
|
# ...
|
|
|
|
$ cd $GOPATH/src/github.com/hashicorp/vault/logical/plugin/mock/mock-plugin
|
2017-08-08 16:39:19 +00:00
|
|
|
```
|
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
Compile the plugin:
|
2017-08-08 16:39:19 +00:00
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
```sh
|
|
|
|
$ go build -o my-mock-plugin
|
|
|
|
```
|
2017-08-08 16:39:19 +00:00
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
Put the plugin in the directory:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ mv my-mock-plugin /etc/vault/vault_plugins
|
2017-08-08 16:39:19 +00:00
|
|
|
```
|
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
## Register in Plugin Catalog
|
2017-08-08 16:39:19 +00:00
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
Calculate the SHA256 sum of the compiled plugin binary, and use that to register
|
|
|
|
the plugin into Vault's plugin catalog:
|
2017-08-08 16:39:19 +00:00
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
```sh
|
|
|
|
$ shasum -a 256 /etc/vault/vault_plugins/my-mock-plugin
|
|
|
|
2c071aafa1b30897e60b79643e77592cb9d1e8f803025d44a7f9bbfa4779d615 /etc/vault/vault_plugins/my-mock-plugin
|
2017-08-08 16:39:19 +00:00
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
$ vault write sys/plugins/catalog/my-mock-plugin \
|
|
|
|
sha_256=2c071aafa1b30897e60b79643e77592cb9d1e8f803025d44a7f9bbfa4779d615 \
|
|
|
|
command=my-mock-plugin
|
|
|
|
Success! Data written to: sys/plugins/catalog/my-mock-plugin
|
2017-08-08 16:39:19 +00:00
|
|
|
```
|
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
## Enable Plugin
|
2017-08-08 16:39:19 +00:00
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
Enabling the plugin varies depending on if it's a secrets engine or auth method:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$ vault secrets enable -path=my-secrets-plugin -plugin-name=my-mock-plugin plugin
|
|
|
|
Success! Enabled the my-mock-plugin plugin at: my-secrets-plugin/
|
2017-08-08 16:39:19 +00:00
|
|
|
```
|
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
If you try to mount this particular plugin as an auth method instead of a
|
|
|
|
secrets engine, you will get an error:
|
2017-08-08 16:39:19 +00:00
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
```sh
|
|
|
|
$ vault auth enable -path=my-auth-plugin -plugin-name=my-mock-plugin plugin
|
|
|
|
# ...
|
|
|
|
* cannot mount 'my-mock-plugin' of type 'secret' as an auth method
|
2017-08-08 16:39:19 +00:00
|
|
|
```
|
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
## Perform Operations
|
|
|
|
|
|
|
|
Each plugin responds to read, write, list, and delete as its own behavior.
|
2017-08-08 16:39:19 +00:00
|
|
|
|
2017-09-21 20:56:29 +00:00
|
|
|
```text
|
|
|
|
$ vault write my-secrets-plugin/kv/foo value=bar
|
|
|
|
Key Value
|
|
|
|
--- -----
|
|
|
|
value bar
|
2017-08-08 16:39:19 +00:00
|
|
|
```
|
2017-09-21 20:56:29 +00:00
|
|
|
|
|
|
|
## Disable Plugin
|
|
|
|
|
|
|
|
When you are done using the plugin, disable it.
|
|
|
|
|
|
|
|
```text
|
|
|
|
$ vault secrets disable my-secrets-plugin
|
|
|
|
Success! Disabled the secrets engine (if it existed) at: my-secrets-plugin/
|
2017-08-08 16:39:19 +00:00
|
|
|
```
|
|
|
|
|
2017-08-09 14:28:13 +00:00
|
|
|
[plugin-system]: /docs/internals/plugins.html
|
2017-12-02 18:43:37 +00:00
|
|
|
[database-backend]: /docs/secrets/databases/index.html
|