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

19 lines
359 B
HCL

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