-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvault.hcl
43 lines (35 loc) · 869 Bytes
/
vault.hcl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Full configuration options can be found at https://openbao.org/docs/configuration
ui = true
#mlock = true
#disable_mlock = true
storage "file" {
path = "/var/lib/openbao/data"
}
#storage "consul" {
# address = "127.0.0.1:8500"
# path = "openbao"
#}
# HTTP listener
#listener "tcp" {
# address = "127.0.0.1:8200"
# tls_disable = 1
#}
# HTTPS listener
listener "tcp" {
address = "0.0.0.0:8200"
tls_cert_file = "/etc/openbao.d/tls/tls.crt"
tls_key_file = "/etc/openbao.d/tls/tls.key"
}
# Example AWS KMS auto unseal
#seal "awskms" {
# region = "us-east-1"
# kms_key_id = "REPLACE-ME"
#}
# Example HSM auto unseal
#seal "pkcs11" {
# lib = "/usr/openbao/lib/libCryptoki2_64.so"
# slot = "0"
# pin = "AAAA-BBBB-CCCC-DDDD"
# key_label = "openbao-hsm-key"
# hmac_key_label = "openbao-hsm-hmac-key"
#}