Files
opentf/website/docs/language/state/examples/encryption/fallback.tf
2025-05-07 16:06:22 +03:00

19 lines
379 B
HCL

terraform {
encryption {
# Methods and key providers here.
state {
method = method.some_method.new_method_name
fallback {
method = method.some_method.old_method_name
}
}
plan {
method = method.some_method.new_method_name
fallback {
method = method.some_method.old_method_name
}
}
}
}