-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkms.tf
127 lines (105 loc) · 2.67 KB
/
kms.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
module "source_kms_key" {
source = "cloudposse/kms-key/aws"
version = "0.12.1"
enabled = var.enabled
providers = {
aws = aws.source
}
context = module.source_label.context
deletion_window_in_days = 7
enable_key_rotation = true
alias = "alias/${module.source_label.id}"
policy = data.aws_iam_policy_document.kms_source_policy.json
}
module "target_kms_key" {
source = "cloudposse/kms-key/aws"
version = "0.12.1"
enabled = var.enabled && var.is_cross_account_backup_enabled
providers = {
aws = aws.target
}
context = module.target_label.context
deletion_window_in_days = 7
enable_key_rotation = true
alias = "alias/${module.target_label.id}"
policy = data.aws_iam_policy_document.kms_target_policy.json
}
data "aws_caller_identity" "source" {
provider = aws.source
}
data "aws_caller_identity" "target" {
provider = aws.target
}
data "aws_iam_policy_document" "kms_source_policy" {
provider = aws.source
statement {
sid = "Enable IAM User Permissions"
effect = "Allow"
#checkov:skip=CKV_AWS_111
actions = ["kms:*"]
#checkov:skip=CKV_AWS_109
resources = ["*"]
principals {
identifiers = [
"arn:aws:iam::${data.aws_caller_identity.source.account_id}:root",
]
type = "AWS"
}
}
statement {
sid = "Allow use of the key"
effect = "Allow"
#checkov:skip=CKV_AWS_111
actions = ["kms:Encrypt",
"kms:Decrypt",
"kms:ReEncrypt*",
"kms:GenerateDataKey*",
"kms:DescribeKey",
"kms:CreateGrant"
]
#checkov:skip=CKV_AWS_109
resources = ["*"]
principals {
identifiers = [
"arn:aws:iam::${data.aws_caller_identity.target.account_id}:root",
]
type = "AWS"
}
}
}
data "aws_iam_policy_document" "kms_target_policy" {
provider = aws.target
statement {
sid = "Enable IAM User Permissions"
effect = "Allow"
#checkov:skip=CKV_AWS_111
actions = ["kms:*"]
#checkov:skip=CKV_AWS_109
resources = ["*"]
principals {
identifiers = [
"arn:aws:iam::${data.aws_caller_identity.target.account_id}:root"
]
type = "AWS"
}
}
statement {
sid = "Allow use of the key"
effect = "Allow"
actions = ["kms:Encrypt",
"kms:Decrypt",
"kms:ReEncrypt*",
"kms:GenerateDataKey*",
"kms:DescribeKey",
"kms:CreateGrant"
]
#checkov:skip=CKV_AWS_109
resources = ["*"]
principals {
identifiers = [
"arn:aws:iam::${data.aws_caller_identity.source.account_id}:root",
]
type = "AWS"
}
}
}