Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 718 Bytes

cli-backends-configuration.md

File metadata and controls

28 lines (24 loc) · 718 Bytes

Coffer CLI Backends Configuration

Vault

Backend configuration file example

type = "vault-kv" # type for 'vault' backend
address = "localhost:8200" # required
mount = "secret" # required
token = "<vault token>" # required

How to run

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>