internal/encryption/method/external/README.md
[!WARNING] This file is not an end-user documentation, it is intended for developers. Please follow the user documentation on the OpenTofu website unless you want to work on the encryption code.
This directory contains the external encryption method. You can configure it like this:
terraform {
encryption {
method "external" "foo" {
keys = key_provider.some.provider
encrypt_command = ["/path/to/binary", "arg1", "arg2"]
decrypt_command = ["/path/to/binary", "arg1", "arg2"]
}
}
}
The external method must implement the following protocol: