generated from trussworks/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 20
/
main.tf
351 lines (309 loc) · 8.76 KB
/
main.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
locals {
# Each policy variable is set to a bool, defaulting to false (not included).
# Include a policy by setting a policy variable to `true`, passing the hard-coded "Deny" statment
# into the combined policy block.
# Exclude a policy from the combined policy by omitting the policy variable in the module call.
# This results in the default setting of `false`, and
# the dynamic `for_each` statement will return an array with an empty string,
# and the statement will not be included.
deny_leaving_orgs_statement = var.deny_leaving_orgs ? [""] : []
deny_creating_iam_users_statement = var.deny_creating_iam_users ? [""] : []
deny_deleting_kms_keys_statement = var.deny_deleting_kms_keys ? [""] : []
deny_deleting_route53_zones_statement = var.deny_deleting_route53_zones ? [""] : []
deny_deleting_cloudwatch_logs_statement = var.deny_deleting_cloudwatch_logs ? [""] : []
deny_root_account_statement = var.deny_root_account ? [""] : []
protect_s3_buckets_statement = var.protect_s3_buckets ? [""] : []
deny_s3_buckets_public_access_statement = var.deny_s3_buckets_public_access ? [""] : []
protect_iam_roles_statement = var.protect_iam_roles ? [""] : []
limit_ec2_instance_types = var.limit_ec2_instance_types ? [""] : []
limit_regions_statement = var.limit_regions ? [""] : []
deny_unencrypted_object_uploads_statement = var.require_s3_encryption ? [""] : []
deny_incorrect_encryption_header_statement = var.require_s3_encryption ? [""] : []
}
#
# Combine Policies
#
data "aws_iam_policy_document" "combined_policy_block" {
#
# Deny leaving AWS Organizations
#
dynamic "statement" {
for_each = local.deny_leaving_orgs_statement
content {
sid = "DenyLeavingOrgs"
effect = "Deny"
actions = ["organizations:LeaveOrganization"]
resources = ["*"]
}
}
#
# Deny creating IAM users or access keys
#
dynamic "statement" {
for_each = local.deny_creating_iam_users_statement
content {
sid = "DenyCreatingIAMUsers"
effect = "Deny"
actions = [
"iam:CreateUser",
"iam:CreateAccessKey"
]
resources = ["*"]
}
}
#
# Deny deleting KMS Keys
#
dynamic "statement" {
for_each = local.deny_deleting_kms_keys_statement
content {
sid = "DenyDeletingKMSKeys"
effect = "Deny"
actions = [
"kms:ScheduleKeyDeletion",
"kms:Delete*"
]
resources = ["*"]
}
}
#
# Deny deleting Route53 Hosted Zones
#
dynamic "statement" {
for_each = local.deny_deleting_route53_zones_statement
content {
sid = "DenyDeletingRoute53Zones"
effect = "Deny"
actions = [
"route53:DeleteHostedZone"
]
resources = ["*"]
}
}
#
# Deny deleting VPC Flow logs, cloudwatch log groups, and cloudwatch log streams
#
dynamic "statement" {
for_each = local.deny_deleting_cloudwatch_logs_statement
content {
sid = "DenyDeletingCloudwatchLogs"
effect = "Deny"
actions = [
"ec2:DeleteFlowLogs",
"logs:DeleteLogGroup",
"logs:DeleteLogStream"
]
resources = ["*"]
}
}
#
# Deny root account
#
dynamic "statement" {
for_each = local.deny_root_account_statement
content {
sid = "DenyRootAccount"
actions = ["*"]
resources = ["*"]
effect = "Deny"
condition {
test = "StringLike"
variable = "aws:PrincipalArn"
values = ["arn:aws:iam::*:root"]
}
}
}
#
# Protect S3 Buckets
#
dynamic "statement" {
for_each = local.protect_s3_buckets_statement
content {
sid = "ProtectS3Buckets"
effect = "Deny"
actions = [
"s3:DeleteBucket",
"s3:DeleteObject",
"s3:DeleteObjectVersion",
]
resources = var.protect_s3_bucket_resources
}
}
#
# Deny S3 Buckets Public Access (will not override an account-level setting)
#
dynamic "statement" {
for_each = local.deny_s3_buckets_public_access_statement
content {
sid = "DenyS3BucketsPublicAccess"
effect = "Deny"
actions = [
"s3:PutBucketPublicAccessBlock",
"s3:DeletePublicAccessBlock"
]
resources = var.deny_s3_bucket_public_access_resources
}
}
#
# Protect IAM Roles
#
dynamic "statement" {
for_each = local.protect_iam_roles_statement
content {
sid = "ProtectIAMRoles"
effect = "Deny"
actions = [
"iam:AttachRolePolicy",
"iam:DeleteRole",
"iam:DeleteRolePermissionsBoundary",
"iam:DeleteRolePolicy",
"iam:DetachRolePolicy",
"iam:PutRolePermissionsBoundary",
"iam:PutRolePolicy",
"iam:UpdateAssumeRolePolicy",
"iam:UpdateRole",
"iam:UpdateRoleDescription"
]
resources = var.protect_iam_role_resources
}
}
#
# Restrict EC2 Instance Types
#
dynamic "statement" {
for_each = local.limit_ec2_instance_types
content {
sid = "LimitEC2InstanceTypes"
effect = "Deny"
actions = [
"ec2:RunInstances",
"ec2:StartInstances"
]
resources = ["*"]
condition {
test = "StringNotEquals"
variable = "ec2:InstanceType"
values = var.allowed_ec2_instance_types
}
}
}
#
# Restrict Regional Operations
#
dynamic "statement" {
for_each = local.limit_regions_statement
content {
sid = "LimitRegions"
effect = "Deny"
# These actions do not operate in a specific region, or only run in
# a single region, so we don't want to try restricting them by region.
# List of actions can be found in the following example:
# https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scps_examples_general.html
not_actions = [
"a4b:*",
"acm:*",
"aws-marketplace-management:*",
"aws-marketplace:*",
"aws-portal:*",
"budgets:*",
"ce:*",
"chime:*",
"cloudfront:*",
"config:*",
"cur:*",
"directconnect:*",
"ec2:DescribeRegions",
"ec2:DescribeTransitGateways",
"ec2:DescribeVpnGateways",
"fms:*",
"globalaccelerator:*",
"health:*",
"iam:*",
"importexport:*",
"kms:*",
"mobileanalytics:*",
"networkmanager:*",
"organizations:*",
"pricing:*",
"route53:*",
"route53domains:*",
"route53-recovery-cluster:*",
"route53-recovery-control-config:*",
"route53-recovery-readiness:*",
"s3:GetAccountPublic*",
"s3:ListAllMyBuckets",
"s3:ListMultiRegionAccessPoints",
"s3:PutAccountPublic*",
"shield:*",
"sts:*",
"support:*",
"supportapp:*",
"supportplans:*",
"trustedadvisor:*",
"waf-regional:*",
"waf:*",
"wafv2:*",
"wellarchitected:*"
]
resources = ["*"]
condition {
test = "StringNotEquals"
variable = "aws:RequestedRegion"
values = var.allowed_regions
}
}
}
#
# Require S3 encryption
#
# https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html
dynamic "statement" {
for_each = local.deny_incorrect_encryption_header_statement
content {
sid = "DenyIncorrectEncryptionHeader"
effect = "Deny"
actions = ["s3:PutObject"]
resources = ["*"]
condition {
test = "StringNotEquals"
variable = "s3:x-amz-server-side-encryption"
values = ["AES256", "aws:kms"]
}
}
}
dynamic "statement" {
for_each = local.deny_unencrypted_object_uploads_statement
content {
sid = "DenyUnEncryptedObjectUploads"
effect = "Deny"
actions = ["s3:PutObject"]
resources = ["*"]
condition {
test = "Null"
variable = "s3:x-amz-server-side-encryption"
values = [true]
}
}
}
}
#
# Deny all access
#
data "aws_iam_policy_document" "deny_all_access" {
statement {
sid = "DenyAllAccess"
effect = "Deny"
actions = ["*"]
resources = ["*"]
}
}
resource "aws_organizations_policy" "generated" {
name = "${var.target.name}-generated-ou-scp"
description = "${var.target.name} SCP generated by ou-scp module"
content = var.deny_all ? data.aws_iam_policy_document.deny_all_access.json : data.aws_iam_policy_document.combined_policy_block.json
tags = var.tags
}
resource "aws_organizations_policy_attachment" "generated" {
policy_id = aws_organizations_policy.generated.id
target_id = var.target.id
}