Is it possible to use a config file to enable audit
logs?
I’m expecting to be able to add it to my config.hcl
and have audit
enabled on container startup, but so far it’s not working. I’m not sure if it’s user error or if it’s unsupported.
storage "raft" {
path = "/vault/data"
node_id = "node1"
}
listener "tcp" {
address = "0.0.0.0:8200"
tls_disable = "true"
}
api_addr = "http://127.0.0.0:8200"
cluster_addr = "https://127.0.0.0:8201"
ui = true
audit "file" {
enabled = true
path = "/vault/logs/audit.log"
}