Hi,
I'm trying to set up Vault in production in HA mode and would like to know how I add config parameter in vault config file (server.hcl) similar to below which I used to run that command on a single VM with each vault and consul instances on it.
vault audit-enable file path=/var/vcap/packages/log/vault_audit.log
My server.hcl in HA mode
backend "consul" {
path = "vault"
}
listener "tcp" {
address = "XXX.XXX.XXX.XXX:XXXX"
tls_cert_file = "/var/vcap/jobs/vault/ssl/selfsigned.crt"
tls_key_file = "/var/vcap/jobs/vault/ssl/selfsigned.key"
}