initial commit

This commit is contained in:
mr0xb 2026-05-24 02:51:15 -04:00
commit 5e3d71294d
10 changed files with 274 additions and 0 deletions

9
terraform/unifi/vault.tf Normal file
View 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"
}