summaryrefslogtreecommitdiff
path: root/testing/vault/vault.hcl
diff options
context:
space:
mode:
Diffstat (limited to 'testing/vault/vault.hcl')
-rw-r--r--testing/vault/vault.hcl15
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/vault/vault.hcl b/testing/vault/vault.hcl
new file mode 100644
index 00000000000..b74da5ed80f
--- /dev/null
+++ b/testing/vault/vault.hcl
@@ -0,0 +1,15 @@
+/*
+ * Vault configuration. See: https://vaultproject.io/docs/config/
+ */
+
+backend "file" {
+ path = "/var/lib/vault"
+}
+
+listener "tcp" {
+ /*
+ * By default Vault listens on localhost only.
+ * Make sure to enable TLS support otherwise.
+ */
+ tls_disable = 1
+}