github.com/opentofu/opentofu@v1.7.1/internal/command/e2etest/testdata/encryption-flow/broken.tf.disabled (about)

     1  terraform {
     2    encryption {
     3      key_provider "pbkdf2" "basic" {
     4        passphrase    = "aaaaaaaa-83f1-47ec-9b2d-2aebf6417167"
     5        key_length    = 32
     6        iterations    = 200000
     7        hash_function = "sha512"
     8        salt_length   = 12
     9      }
    10      method "aes_gcm" "example" {
    11        keys = key_provider.pbkdf2.basic
    12      }
    13      state {
    14        method = method.aes_gcm.example
    15      }
    16      plan {
    17        method = method.aes_gcm.example
    18      }
    19    }
    20  }