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

12 lines
245 B
HCL

terraform {
encryption {
# Methods and key providers here.
state {
method = method.some_method.new_method
fallback {
# The empty fallback block allows reading unencrypted state files.
}
}
}
}