0d1e6cd5f0
Signed-off-by: Christian Mesh <christianmesh1@gmail.com> |
||
---|---|---|
.. | ||
compliancetest | ||
config | ||
enctest | ||
keyprovider | ||
method | ||
registry | ||
base.go | ||
default_registry.go | ||
encryption.go | ||
example_test.go | ||
keyprovider.go | ||
methods.go | ||
plan.go | ||
README.md | ||
state.go | ||
targets_test.go | ||
targets.go |
OpenTofu State and Plan encryption
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 folder contains the code for state and plan encryption. For a quick example on how to use this package, please take a look at the example_test.go file.
Structure
The current folder contains the top level API. It requires a registry for holding the available key providers and encryption methods, which is located in the registry folder. The key providers are located in the keyprovider folder, while the encryption methods are located in the method folder. You can also find the configuration struct and its related functions in the config folder.
Further reading
For a detailed design document on state encryption, please read this document.