Last active
June 24, 2018 20:23
-
-
Save marylly/a44c8a6104fc3f2df98a2b655036b3eb to your computer and use it in GitHub Desktop.
Vault config json file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
listener "tcp" { | |
address = "127.0.0.1:8200" | |
tls_disable = 1 | |
} | |
backend "consul" { | |
address = "127.0.0.1:8500" | |
advertise_addr = "http://127.0.0.1:8200" | |
path = "tmp/vault/" | |
scheme = "http" | |
redirect_addr = "http://127.0.0.1:8200" | |
VAULT_ADDR = "http://127.0.0.1:8200" | |
} | |
storage "consul" { | |
address = "127.0.0.1:8500" | |
path = "vault" | |
} | |
disable_mlock=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment