I want to disable TLS for the Vault raft cluster.
vault:
server:
extraEnvironmentVars:
VAULT_ADDR : http://127.0.0.1:8200
ha:
raft:
config: |
ui = true
cluster_name = "vault-integrated-storage"
listener "tcp" {
tls_disable = 1 # here I turn off the TLS
address = "[::]:8200"
cluster_address = "[::]:8201"
}
storage "raft" {
tls_disable = 1 # and here too
path = "/vault/data"
It seems that this is not enough. Some values are still with HTTPS:
HA Cluster https://vault-0.vault-internal:8201
VAULT_ADDR : https://127.0.0.1:8200
Well, and the cluster does not build:
https://127.0.0.1:8200/v1/sys/storage/raft/join": http: server gave HTTP response to HTTPS client