Hi,
I am working on setting up Vault with OCI Object storage as backend behind a load balancer.
DNS → LB ->Two backends
When I am initializing the vault, I see both nodes are going to standby Node. Below is my configuration. Any suggestions please to get past this issue? I am wondering what would be the cluster_address I need to provide for vault config.
api_addr = “fqdn url”
cluster_name = “vault”
default_lease_ttl = “5m”
listener “tcp” {
address = “0.0.0.0:8200”
cluster_address = “0.0.0.0:8201”
#tls_cert_file = “/etc/vault.d/vault.crt”
tls_disable = “true”
#tls_key_file = “/etc/vault.d/key.pem”
}
log_level = “DEBUG”
max_lease_ttl = “30m”
storage “oci” {
auth_type_api_key = “false”
bucket_name = “vault”
ha_enabled = “true”
lock_bucket_name = “vault_lock”
namespace_name = “xxxxxxxx”
}
ui = “true”