Files
opentf/website/docs/language/state/examples/encryption/fallback.tf
Janos fa638907f1 Fixes #1169: AES-GCM implementation (#1291)
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>
2024-03-07 10:24:37 +00:00

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
}
}
}
}