Add vault kv creation

This commit is contained in:
IamTheFij 2022-07-25 11:14:51 -07:00
parent 464cdf7010
commit 068da0d539
1 changed files with 5 additions and 0 deletions

5
nomad/vault-kv.tf Normal file
View File

@ -0,0 +1,5 @@
resource "vault_mount" "kv" {
path = "kv"
type = "kv-v2"
description = "Catch all kv mount"
}