Files
opentf/website/docs/language/state/examples/encryption/fallback_to_unencrypted.tf

13 lines
288 B
HCL

terraform {
encryption {
# Methods and key providers here.
state {
# The empty block allows writing unencrypted state files
# unless the enforced setting is set to true.
fallback {
method = method.some_method.old_method
}
}
}
}