aboutsummaryrefslogtreecommitdiffstats
path: root/testing/vault/vault.hcl
diff options
context:
space:
mode:
authorChristian Kampka <christian@kampka.net>2015-09-19 12:37:45 +0200
committerFrancesco Colista <fcolista@alpinelinux.org>2015-09-21 08:54:21 +0000
commit5061eaa7164287ab2bf209ff9b3b3197551b0f6d (patch)
treebf651caec3773d758fcd9ce3da10ace1a3321fb5 /testing/vault/vault.hcl
parent2b2d458b50da34ebb2659bbdcaecac89f7945dd6 (diff)
testing/vault: new aport
https://www.vaultproject.io Vault is a tool for securely accessing secrets. A secret is anything that you want to tightly control access to, such as API keys, passwords, certificates, and more. Vault provides a unified interface to any secret, while providing tight access control and recording a detailed audit log.
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
+}