mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
a5a651dbb9
Signed-off-by: main <magic_rb@redalder.org>
9 lines
205 B
HCL
9 lines
205 B
HCL
resource "vault_kv_secret_v2" "encryption_key" {
|
|
mount = var.vault_mount.path
|
|
name = var.encryption_key_path
|
|
delete_all_versions = true
|
|
data_json = jsonencode({
|
|
key = var.encryption_key
|
|
})
|
|
}
|