mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-17 01:03:30 -04:00
15 lines
349 B
HCL
15 lines
349 B
HCL
terraform {
|
|
encryption {
|
|
# Methods and key providers here.
|
|
method "unencrypted" "migrate" {}
|
|
|
|
state {
|
|
method = method.some_method.new_method
|
|
fallback {
|
|
# The unencrypted method in a fallback block allows reading unencrypted state files.
|
|
method = method.unencrypted.migrate
|
|
}
|
|
}
|
|
}
|
|
}
|