type = "vault-kv" # type for 'vault' backend
address = "localhost:8200" # required
mount = "secret" # required
token = "<vault token>" # required
First of all, you need to install vault
from its official site. Then you can start server with the next command:
$ vault server -dev
Also you can specify token and address where it would be launched (default localhost:8200
)
-dev-root-token-id=<vault token>
-dev-listen-address=<addr>