Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/conf/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Lyra Configuration

See `lconf.toml` for an example of a lyra configuration file. This conf file lives inside `~/.lyra`.

# Specs
Configuration is done via a toml file. The following are the exact specification of the toml file.

* `Vault` table:
* `enable = false`
* Enables vault, default set to false.
* `server = "http://localhost:8200"`
* The url of the vault server. Default value is set to `http://localhost:8200`
* `ca_cert = [""]`
* An array of CA certs (in PEM format) to be trusted. Usually this should be only filled if you are self signing your vault's cert. Lyra by defaults always trust your operating system's default trust store.
6 changes: 6 additions & 0 deletions docs/conf/lconf.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#example of aLyra configuration

[vault]
enable = false
server = "http://localhost:8200"
ca_cert = [""]