Fixes #2337: External encryption method (#2367)

Signed-off-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com>
This commit is contained in:
AbstractionFactory
2025-01-31 18:13:18 +01:00
committed by GitHub
parent 2a4d81042b
commit 60fdd359d5
26 changed files with 1065 additions and 116 deletions

View File

@@ -0,0 +1,10 @@
terraform {
encryption {
key_provider "external" "foo" {
encrypt_command = ["./some_program", "--encrypt"]
decrypt_command = ["./some_program", "--decrypt"]
# Optional:
keys = key_provider.some.provider
}
}
}