mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-22 23:00:53 -05:00
19 lines
359 B
HCL
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
|
|
}
|
|
}
|
|
}
|
|
} |