-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tf
280 lines (227 loc) · 6.73 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
provider "aws" {
alias = "destination"
region = var.dest_region
}
data "aws_caller_identity" "current" {
}
data "aws_region" "region" {
}
locals {
bucket_name = var.name != null ? var.name : "${data.aws_caller_identity.current.account_id}-${data.aws_region.region.name}-${var.name_suffix}"
logging_map = var.logging_bucket == null ? [] : [{
bucket = var.logging_bucket
prefix = var.logging_bucket_prefix != null ? var.logging_bucket_prefix : local.bucket_name
}]
dest_logging_map = var.dest_logging_bucket == null ? [] : [{
bucket = var.dest_logging_bucket
prefix = var.dest_logging_bucket_prefix != null ? var.dest_logging_bucket_prefix : "${local.bucket_name}-replica"
}]
}
# This bucket uses a dynamic block to generate logging. If users do not wish to log,
# that's on them, but the module supports it.
#tfsec:ignore:aws-s3-enable-bucket-logging tfsec:ignore:aws-s3-encryption-customer-key
resource "aws_s3_bucket" "this" {
bucket = local.bucket_name
acl = "private"
tags = var.tags
dynamic "logging" {
for_each = local.logging_map
content {
target_bucket = logging.value.bucket
target_prefix = logging.value.prefix
}
}
server_side_encryption_configuration {
rule {
apply_server_side_encryption_by_default {
sse_algorithm = "AES256"
}
}
}
versioning {
enabled = true
}
}
resource "aws_s3_bucket_public_access_block" "this" {
bucket = aws_s3_bucket.this.id
block_public_acls = true
block_public_policy = true
ignore_public_acls = true
restrict_public_buckets = true
lifecycle {
create_before_destroy = true
}
depends_on = [
aws_s3_bucket.this,
aws_s3_bucket_policy.this
]
}
data "aws_iam_policy_document" "this" {
dynamic "statement" {
for_each = var.allowed_account_ids
content {
sid = "Allow cross-account access to list objects (${statement.value})"
actions = ["s3:ListBucket"]
effect = "Allow"
resources = [aws_s3_bucket.this.arn]
principals {
identifiers = ["arn:aws:iam::${statement.value}:root"]
type = "AWS"
}
}
}
dynamic "statement" {
# Remove accounts with write access from this statement to keep policy size down
for_each = setsubtract(var.allowed_account_ids, var.allowed_account_ids_write)
content {
sid = "Allow Cross-account read-only access (${statement.value})"
actions = ["s3:GetObject*"]
effect = "Allow"
resources = ["${aws_s3_bucket.this.arn}/*"]
principals {
identifiers = ["arn:aws:iam::${statement.value}:root"]
type = "AWS"
}
}
}
dynamic "statement" {
for_each = var.allowed_account_ids_write
content {
sid = "Allow Cross-account write access (${statement.value})"
actions = [
"s3:GetObject*",
"s3:PutObject*"
]
effect = "Allow"
resources = ["${aws_s3_bucket.this.arn}/*"]
principals {
identifiers = ["arn:aws:iam::${statement.value}:root"]
type = "AWS"
}
}
}
}
resource "aws_s3_bucket_policy" "this" {
bucket = aws_s3_bucket.this.id
policy = data.aws_iam_policy_document.this.json
}
########################################
# Source replication configuration
########################################
resource "aws_s3_bucket_replication_configuration" "this" {
count = var.dest_region != "" ? 1 : 0
role = aws_iam_role.replication[0].arn
bucket = aws_s3_bucket.this.id
rule {
id = random_id.replication[0].b64_std
priority = 0
delete_marker_replication {
status = "Enabled"
}
filter {
prefix = ""
}
status = "Enabled"
destination {
bucket = aws_s3_bucket.destination[0].arn
}
}
}
########################################
# Replicated bucket
########################################
#tfsec:ignore:AWS002
resource "aws_s3_bucket" "destination" {
count = var.dest_region != "" ? 1 : 0
provider = aws.destination
bucket = "${local.bucket_name}-replica"
acl = "private"
tags = var.tags
dynamic "logging" {
for_each = local.dest_logging_map
content {
target_bucket = logging.value.bucket
target_prefix = logging.value.prefix
}
}
versioning {
enabled = true
}
server_side_encryption_configuration {
rule {
apply_server_side_encryption_by_default {
sse_algorithm = "AES256"
}
}
}
}
resource "aws_s3_bucket_public_access_block" "dest_block_public_access" {
count = var.dest_region != "" ? 1 : 0
provider = aws.destination
bucket = aws_s3_bucket.destination[0].id
block_public_acls = true
block_public_policy = true
ignore_public_acls = true
restrict_public_buckets = true
}
data "aws_iam_policy_document" "destination" {
count = var.dest_region != "" ? 1 : 0
provider = aws.destination
dynamic "statement" {
for_each = var.allowed_account_ids
content {
sid = "Allow cross-account access to list objects (${statement.value})"
actions = ["s3:ListBucket"]
effect = "Allow"
resources = [aws_s3_bucket.destination[0].arn]
principals {
identifiers = ["arn:aws:iam::${statement.value}:root"]
type = "AWS"
}
}
}
dynamic "statement" {
# Remove accounts with write access from this statement to keep policy size down
for_each = setsubtract(var.allowed_account_ids, var.allowed_account_ids_write)
content {
sid = "Allow Cross-account read-only access (${statement.value})"
actions = ["s3:GetObject*"]
effect = "Allow"
resources = ["${aws_s3_bucket.destination[0].arn}/*"]
principals {
identifiers = ["arn:aws:iam::${statement.value}:root"]
type = "AWS"
}
}
}
dynamic "statement" {
for_each = var.allowed_account_ids_write
content {
sid = "Allow Cross-account write access (${statement.value})"
actions = [
"s3:GetObject*",
"s3:PutObject*"
]
effect = "Allow"
resources = ["${aws_s3_bucket.destination[0].arn}/*"]
principals {
identifiers = ["arn:aws:iam::${statement.value}:root"]
type = "AWS"
}
}
}
}
data "aws_iam_policy_document" "destination_combined" {
count = var.dest_region != "" ? 1 : 0
provider = aws.destination
source_policy_documents = [
data.aws_iam_policy_document.destination[0].json,
var.dest_extra_bucket_policy,
]
}
resource "aws_s3_bucket_policy" "destination" {
count = var.dest_region != "" ? 1 : 0
provider = aws.destination
bucket = aws_s3_bucket.destination[0].id
policy = data.aws_iam_policy_document.destination_combined[0].json
}