mirror of
https://github.com/mr0xb/home-iac.git
synced 2026-08-28 11:54:58 -04:00
initial commit
This commit is contained in:
commit
5e3d71294d
10 changed files with 274 additions and 0 deletions
9
terraform/unifi/vault.tf
Normal file
9
terraform/unifi/vault.tf
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
resource "vault_mount" "kvv2" {
|
||||
path = "secret"
|
||||
type = "kv"
|
||||
options = { version = "2" }
|
||||
}
|
||||
|
||||
data "vault_kv_secret" "networking" {
|
||||
path = "${vault_mount.kvv2.path}/networking"
|
||||
}
|
||||
Loading…
Reference in a new issue