# tflint-ignore: terraform_standard_module_structure variable "enable_kms_backup" { description = "Enable customer managed key that can be used to encrypt/decrypt AWS Backup" type = bool default = false } # tflint-ignore: terraform_standard_module_structure variable "enable_key_rotation_backup" { description = "Enable key rotation for AWS Backup CMK" type = bool default = true } # tflint-ignore: terraform_standard_module_structure variable "enable_multi_region_backup" { description = "Enable multi-region for AWS Backup CMK" type = bool default = false } # tflint-ignore: terraform_standard_module_structure variable "override_policy_backup" { description = "A valid KMS key policy JSON document. If not specified, a canonical key policy will be used." type = string default = null } data "aws_iam_policy_document" "backup" { # checkov:skip=CKV_AWS_109: Not applicable, using condition # checkov:skip=CKV_AWS_111: Not applicable, using condition source_policy_documents = [data.aws_iam_policy_document.admin_kms_policy.json] statement { sid = "Allow access through Backup for all principals in the account that are authorized to use Backup Storage" principals { type = "AWS" identifiers = ["*"] } actions = [ "kms:CreateGrant", "kms:Decrypt", "kms:GenerateDataKey*" ] resources = ["*"] condition { test = "StringEquals" variable = "kms:ViaService" values = [ "backup.${var.region}.amazonaws.com" ] } condition { test = "StringEquals" variable = "kms:CallerAccount" values = local.allowed_accounts_via_service } } }