mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-13 17:51:12 -04:00
10 lines
No EOL
238 B
Text
10 lines
No EOL
238 B
Text
terraform {
|
|
encryption {
|
|
method "external" "foo" {
|
|
encrypt_command = ["./some_program", "--encrypt"]
|
|
decrypt_command = ["./some_program", "--decrypt"]
|
|
# Optional:
|
|
keys = key_provider.some.provider
|
|
}
|
|
}
|
|
} |