feat(encryption): refactor encryption provider scripts, update KMS integration, and enhance key management

This commit is contained in:
2025-05-12 22:43:42 +02:00
parent 05d1624bdd
commit 15b07ea85d
19 changed files with 497 additions and 39 deletions
+18
View File
@@ -45,3 +45,21 @@ variable "system_id" {
type = string
sensitive = true
}
variable "kms_access_key" {
description = "KMS User Access key"
type = string
sensitive = true
}
variable "kms_secret_key" {
description = "KMS User Secret key"
type = string
sensitive = true
}
variable "kms_key_arn" {
description = "KMS Access key ARN"
type = string
sensitive = true
}