new package openbao: provide a software solution to manage, store, and distribute sensitive data including secrets, certificates, and keys (open source fork of Hashicorp Vault) OBS-URL: https://build.opensuse.org/request/show/1188424 OBS-URL: https://build.opensuse.org/package/show/security/openbao?expand=0&rev=1
19 lines
334 B
Plaintext
19 lines
334 B
Plaintext
vault {
|
|
address = "https://openbao.example.org:8200"
|
|
tls_skip_verify = false
|
|
}
|
|
|
|
auto_auth {
|
|
method {
|
|
type = "token_file"
|
|
config = {
|
|
token_file_path = "/var/lib/openbao/.vault-token"
|
|
}
|
|
}
|
|
sink "file" {
|
|
config = {
|
|
path = "/var/lib/openbao/vault-token-via-agent"
|
|
}
|
|
}
|
|
}
|