-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkms.tf
176 lines (149 loc) · 3.71 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
locals {
# KMS write actions
kms_write_actions = [
"kms:CancelKeyDeletion",
"kms:CreateAlias",
"kms:CreateGrant",
"kms:CreateKey",
"kms:DeleteAlias",
"kms:DeleteImportedKeyMaterial",
"kms:DisableKey",
"kms:DisableKeyRotation",
"kms:EnableKey",
"kms:EnableKeyRotation",
"kms:Encrypt",
"kms:GenerateDataKey",
"kms:GenerateDataKeyWithoutPlaintext",
"kms:GenerateRandom",
"kms:GetKeyPolicy",
"kms:GetKeyRotationStatus",
"kms:GetParametersForImport",
"kms:ImportKeyMaterial",
"kms:PutKeyPolicy",
"kms:ReEncryptFrom",
"kms:ReEncryptTo",
"kms:RetireGrant",
"kms:RevokeGrant",
"kms:ScheduleKeyDeletion",
"kms:TagResource",
"kms:UntagResource",
"kms:UpdateAlias",
"kms:UpdateKeyDescription",
]
# KMS read actions
kms_read_actions = [
"kms:Decrypt",
"kms:DescribeKey",
"kms:List*",
]
# list of saml users for policies
write_user_ids = flatten([
data.aws_caller_identity.current.user_id,
data.aws_caller_identity.current.account_id,
formatlist(
"%s:%s",
data.aws_iam_role.saml_role_config.unique_id,
var.saml_users,
),
values({
for user in data.aws_iam_user.iam_user_config:
user.user_id => user.user_id
}),
])
read_user_ids = flatten([
local.write_user_ids,
values({
for role in data.aws_iam_role.app_role_config:
role.unique_id => format("%s:*", role.unique_id)
})
])
}
# get the saml user info so we can get the unique_id
data "aws_iam_role" "saml_role_config" {
name = var.saml_role
}
data "aws_iam_role" "app_role_config" {
count = length(var.app_roles)
name = var.app_roles[count.index]
}
data "aws_iam_user" "iam_user_config" {
count = length(var.iam_users)
user_name = var.iam_users[count.index]
}
# kms key used to encrypt configuration
resource "aws_kms_key" "config" {
description = "configuration key for ${var.bucket_name}"
deletion_window_in_days = 7
enable_key_rotation = true
tags = var.tags
policy = data.aws_iam_policy_document.config.json
}
resource "aws_kms_alias" "config" {
name = "alias/${var.bucket_name}"
target_key_id = "${aws_kms_key.config.id}"
}
data "aws_iam_policy_document" "config" {
statement {
sid = "DenyWriteToAllExceptSAMLUsers"
effect = "Deny"
principals {
type = "AWS"
identifiers = ["*"]
}
actions = local.kms_write_actions
resources = ["*"]
condition {
test = "StringNotLike"
variable = "aws:userId"
values = local.write_user_ids
}
}
statement {
sid = "DenyReadToAllExceptRoleAndSAMLUsers"
effect = "Deny"
principals {
type = "AWS"
identifiers = ["*"]
}
actions = local.kms_read_actions
resources = ["*"]
condition {
test = "StringNotLike"
variable = "aws:userId"
values = local.read_user_ids
}
}
statement {
sid = "AllowWriteToSAMLUsers"
effect = "Allow"
principals {
type = "AWS"
identifiers = ["*"]
}
actions = local.kms_write_actions
resources = ["*"]
condition {
test = "StringLike"
variable = "aws:userId"
values = local.write_user_ids
}
}
statement {
sid = "AllowReadRoleAndSAMLUsers"
effect = "Allow"
principals {
type = "AWS"
identifiers = ["*"]
}
actions = local.kms_read_actions
resources = ["*"]
condition {
test = "StringLike"
variable = "aws:userId"
values = local.read_user_ids
}
}
}
output "config_key_id" {
value = aws_kms_key.config.key_id
}