mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-15 04:00:08 -04:00
Signed-off-by: Janos <86970079+janosdebugs@users.noreply.github.com> Signed-off-by: Mikel Olasagasti Uranga <mikel@olasagasti.info> Signed-off-by: Christian Mesh <christianmesh1@gmail.com> Signed-off-by: James Humphries <James@james-humphries.co.uk> Co-authored-by: James Humphries <jamesh@spacelift.io> Co-authored-by: Serdar Dalgıç <serdardalgic@users.noreply.github.com> Co-authored-by: Mikel Olasagasti Uranga <mikel@olasagasti.info> Co-authored-by: Christian Mesh <christianmesh1@gmail.com>
26 lines
512 B
HCL
26 lines
512 B
HCL
terraform {
|
|
encryption {
|
|
# Methods and key providers here.
|
|
|
|
statefile {
|
|
method = method.some_method.new_method
|
|
fallback {
|
|
method = method.some_method.old_method
|
|
}
|
|
}
|
|
|
|
planfile {
|
|
method = method.some_method.new_method
|
|
fallback {
|
|
method = method.some_method.old_method
|
|
}
|
|
}
|
|
|
|
backend {
|
|
method = method.some_method.new_method
|
|
fallback {
|
|
method = method.some_method.old_method
|
|
}
|
|
}
|
|
}
|
|
} |