Files
opentf/internal/command/e2etest/testdata/encryption-flow/required.tf.disabled
Christian Mesh be433be96f Support for static variables used with encrypted plans (#1998)
Signed-off-by: Christian Mesh <christianmesh1@gmail.com>
Signed-off-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org>
Co-authored-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org>
2025-07-28 12:11:43 -04:00

21 lines
425 B
Plaintext

terraform {
encryption {
key_provider "pbkdf2" "basic" {
passphrase = var.passphrase
key_length = local.key_length
iterations = 200000
hash_function = "sha512"
salt_length = 12
}
method "aes_gcm" "example" {
keys = key_provider.pbkdf2.basic
}
state {
method = method.aes_gcm.example
}
plan {
method = method.aes_gcm.example
}
}
}