configuration for self hosting a spindle in docker
1vault {
2 address = "http://openbao:8200"
3}
4
5auto_auth {
6 method "approle" {
7 mount_path = "auth/approle"
8 config = {
9 role_id_file_path = "/openbao/approle/role-id"
10 secret_id_file_path = "/openbao/approle/secret-id"
11 }
12 }
13
14 sink "file" {
15 config = {
16 path = "/tmp/openbao-token"
17 mode = 0600
18 }
19 }
20}
21
22listener "tcp" {
23 address = "0.0.0.0:8201"
24 tls_disable = true
25}
26
27api_proxy {
28 use_auto_auth_token = true
29}
30
31cache {
32 use_auto_auth_token = true
33}
34
35log_level = "info"