Hi Guys,
I have deployed my HashiCorp Vault on Azure VM.
here is my config.hcl file
listener "tcp" {
address = "0.0.0.0:8200"
tls_disable = true
}
ui = true
api_addr= “my azure vm public ip:8200”
storage “consul” {
address = “127.0.0.1:8500”
path = “vault/”
}
disable_mlock=true
I’m able to access the Web UI in my local machine but not outside (publicly).
Am I missing anything here ?
Thanks