mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-25 23:00:56 -05:00
Signed-off-by: Janos <86970079+janosdebugs@users.noreply.github.com> Signed-off-by: James Humphries <James@james-humphries.co.uk> Co-authored-by: James Humphries <James@james-humphries.co.uk> Co-authored-by: Siddhartha Sonker <34684647+siddharthasonker@users.noreply.github.com>
37 lines
947 B
HCL
37 lines
947 B
HCL
terraform {
|
|
encryption {
|
|
## Step 1: Add the unencrypted method:
|
|
method "unencrypted" "migrate" {}
|
|
|
|
## Step 2: Add the desired key provider:
|
|
key_provider "pbkdf2" "mykey" {
|
|
# Change this to be at least 16 characters long:
|
|
passphrase = "changeme!"
|
|
}
|
|
|
|
## Step 3: Add the desired encryption method:
|
|
method "aes_gcm" "new_method" {
|
|
keys = key_provider.pbkdf2.mykey
|
|
}
|
|
|
|
state {
|
|
## Step 4: Link the desired encryption method:
|
|
method = method.aes_gcm.new_method
|
|
|
|
## Step 5: Add the "fallback" block referencing the
|
|
## "unencrypted" method.
|
|
fallback {
|
|
method = method.unencrypted.migrate
|
|
}
|
|
|
|
## Step 6: Run "tofu apply".
|
|
|
|
## Step 7: Remove the "fallback" block above and
|
|
## consider adding the "enforced" option:
|
|
# enforced = true
|
|
}
|
|
|
|
## Step 8: Repeat steps 4-8 for plan{} if needed.
|
|
}
|
|
}
|