mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-12 01:42:02 +01:00
a5a651dbb9
Signed-off-by: main <magic_rb@redalder.org>
8 lines
205 B
HCL
8 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
|
|
})
|
|
}
|