Open drawks opened 4 years ago
Also seeing this issue on Vault 1.7.0 / CentOS 7 and Amazon Linux 2. These options appear to be ignored by the Vault Agent.
I just tried them (I'm on 1.6.1), and the options seem to be working. I couldn't find them documented though.
On ubuntu 20.04 with 1.15 same for me, it was also failing because tls_disable was not added, but docu doesn't state it is needed.
listener "unix" { address = "/opt/vault-agent/vault-agent.sock" socke_mode = "0660" socket_group = "1001" socket_user = "1000" tls_disable = true }
socke_mode
You've got a typo
You've got a typo
Thanks.
Describe the bug Setting
socket_mode
,socket_user
orsocket_group
options to to aunix
type listener stanza in a vault agent config does nothing.To Reproduce Steps to reproduce the behavior:
cache { }
listener "unix" { address = "./vault_agent.sock" socket_user = "nobody" socket_group = 99 socket_mode = 0600 tls_disable = true }