mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05:00
19 lines
379 B
HCL
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
|
|
}
|
|
}
|
|
}
|
|
} |