mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-03 05:01:30 -05:00
21 lines
435 B
Plaintext
21 lines
435 B
Plaintext
terraform {
|
|
encryption {
|
|
key_provider "pbkdf2" "basic" {
|
|
passphrase = "26281afb-83f1-47ec-9b2d-2aebf6417167"
|
|
key_length = 32
|
|
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
|
|
}
|
|
}
|
|
}
|