-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmain.tf
426 lines (397 loc) · 17.6 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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
##############################################################################
# terraform-ibm-cos
#
# Creates COS instance and buckets
##############################################################################
locals {
at_enabled = var.activity_tracker_read_data_events || var.activity_tracker_write_data_events ? [1] : []
metrics_enabled = var.request_metrics_enabled || var.usage_metrics_enabled ? [1] : []
archive_enabled = var.archive_days == null ? [] : [1]
expire_enabled = var.expire_days == null ? [] : [1]
retention_enabled = var.retention_enabled ? [1] : []
object_lock_duration_days = var.object_lock_duration_days > 0 ? [1] : []
object_lock_duration_years = var.object_lock_duration_years > 0 ? [1] : []
object_versioning_enabled = var.object_versioning_enabled ? [1] : []
}
resource "time_sleep" "wait_for_authorization_policy" {
depends_on = [ibm_iam_authorization_policy.policy]
count = local.create_access_policy_kms ? 1 : 0
# workaround for https://github.com/IBM-Cloud/terraform-provider-ibm/issues/4478
create_duration = "30s"
# workaround for https://github.com/terraform-ibm-modules/terraform-ibm-cos/issues/672
destroy_duration = "30s"
}
# Resource to create COS instance if create_cos_instance is true
resource "ibm_resource_instance" "cos_instance" {
count = var.create_cos_instance ? 1 : 0
name = var.cos_instance_name
resource_group_id = var.resource_group_id
service = "cloud-object-storage"
plan = var.cos_plan
location = var.cos_location
tags = var.cos_tags
}
resource "ibm_resource_tag" "cos_access_tag" {
count = !var.create_cos_instance || length(var.access_tags) == 0 ? 0 : 1
resource_id = ibm_resource_instance.cos_instance[0].crn
tags = var.access_tags
tag_type = "access"
}
resource "ibm_resource_key" "resource_keys" {
for_each = { for key in var.resource_keys : key.name => key }
name = each.value.key_name == null ? each.key : each.value.key_name
resource_instance_id = local.cos_instance_id
role = each.value.role
parameters = {
"serviceid_crn" = each.value.service_id_crn
"HMAC" = each.value.generate_hmac_credentials
}
}
locals {
cos_instance_id = var.create_cos_instance ? ibm_resource_instance.cos_instance[0].id : var.existing_cos_instance_id
cos_instance_guid = var.create_cos_instance ? ibm_resource_instance.cos_instance[0].guid : element(split(":", var.existing_cos_instance_id), length(split(":", var.existing_cos_instance_id)) - 3)
cos_instance_name = var.create_cos_instance ? ibm_resource_instance.cos_instance[0].name : null
cos_instance_crn = var.create_cos_instance ? ibm_resource_instance.cos_instance[0].crn : null
create_access_policy_kms = var.kms_encryption_enabled && var.create_cos_bucket && !var.skip_iam_authorization_policy
parsed_kms_key_crn = var.kms_key_crn != null ? split(":", var.kms_key_crn) : []
kms_service = length(local.parsed_kms_key_crn) > 0 ? local.parsed_kms_key_crn[4] : null
kms_scope = length(local.parsed_kms_key_crn) > 0 ? local.parsed_kms_key_crn[6] : null
kms_account_id = length(local.parsed_kms_key_crn) > 0 ? split("/", local.kms_scope)[1] : null
kms_key_id = length(local.parsed_kms_key_crn) > 0 ? local.parsed_kms_key_crn[9] : null
}
# Create IAM Authorization Policy to allow COS to access KMS for the encryption key
resource "ibm_iam_authorization_policy" "policy" {
count = local.create_access_policy_kms ? 1 : 0
source_service_name = "cloud-object-storage"
source_resource_instance_id = local.cos_instance_guid
roles = ["Reader"]
description = "Allow the COS instance ${local.cos_instance_guid} to read the ${local.kms_service} key ${local.kms_key_id} from the instance ${var.existing_kms_instance_guid}"
resource_attributes {
name = "serviceName"
operator = "stringEquals"
value = local.kms_service
}
resource_attributes {
name = "accountId"
operator = "stringEquals"
value = local.kms_account_id
}
resource_attributes {
name = "serviceInstance"
operator = "stringEquals"
value = var.existing_kms_instance_guid
}
resource_attributes {
name = "resourceType"
operator = "stringEquals"
value = "key"
}
resource_attributes {
name = "resource"
operator = "stringEquals"
value = local.kms_key_id
}
# Scope of policy now includes the key, so ensure to create new policy before
# destroying old one to prevent any disruption to every day services.
lifecycle {
create_before_destroy = true
}
}
# Create random string which is added to COS bucket name as a suffix
resource "random_string" "bucket_name_suffix" {
count = var.add_bucket_name_suffix ? 1 : 0
length = 4
special = false
upper = false
}
# Create COS bucket with:
# - Retention
# - Encryption
# - Monitoring
# - Activity Tracking
# - Versioning
resource "ibm_cos_bucket" "cos_bucket" {
count = (var.kms_encryption_enabled && var.create_cos_bucket) ? 1 : 0
depends_on = [time_sleep.wait_for_authorization_policy]
bucket_name = var.add_bucket_name_suffix ? "${var.bucket_name}-${random_string.bucket_name_suffix[0].result}" : var.bucket_name
resource_instance_id = local.cos_instance_id
region_location = var.region
cross_region_location = var.cross_region_location
single_site_location = var.single_site_location
endpoint_type = var.management_endpoint_type_for_bucket
storage_class = var.bucket_storage_class
key_protect = var.kms_key_crn
hard_quota = var.hard_quota
force_delete = var.force_delete
object_lock = var.object_locking_enabled ? true : null
## This for_each block is NOT a loop to attach to multiple retention blocks.
## This block is only used to conditionally add retention block depending on retention is enabled.
dynamic "retention_rule" {
for_each = local.retention_enabled
content {
default = var.retention_default
maximum = var.retention_maximum
minimum = var.retention_minimum
permanent = var.retention_permanent
}
}
## This for_each block is NOT a loop to attach to multiple Activity Tracker instances.
## This block is only used to conditionally attach activity tracker depending on AT CRN is provided.
dynamic "activity_tracking" {
for_each = local.at_enabled
content {
read_data_events = var.activity_tracker_read_data_events
write_data_events = var.activity_tracker_write_data_events
management_events = var.activity_tracker_management_events
}
}
## This for_each block is NOT a loop to attach to multiple Sysdig instances.
## This block is only used to conditionally attach monitoring depending on Sydig CRN is provided.
dynamic "metrics_monitoring" {
for_each = local.metrics_enabled
content {
usage_metrics_enabled = var.usage_metrics_enabled
request_metrics_enabled = var.request_metrics_enabled
metrics_monitoring_crn = var.monitoring_crn
}
}
dynamic "object_versioning" {
for_each = local.object_versioning_enabled
content {
enable = var.object_versioning_enabled
}
}
}
# Create COS bucket with:
# - Retention
# - Monitoring
# - Activity Tracking
# - Versioning
# Create COS bucket without:
# - Encryption
resource "ibm_cos_bucket" "cos_bucket1" {
count = (!var.kms_encryption_enabled && var.create_cos_bucket) ? 1 : 0
bucket_name = var.add_bucket_name_suffix ? "${var.bucket_name}-${random_string.bucket_name_suffix[0].result}" : var.bucket_name
depends_on = [time_sleep.wait_for_authorization_policy]
resource_instance_id = local.cos_instance_id
region_location = var.region
cross_region_location = var.cross_region_location
single_site_location = var.single_site_location
endpoint_type = var.management_endpoint_type_for_bucket
storage_class = var.bucket_storage_class
hard_quota = var.hard_quota
force_delete = var.force_delete
object_lock = var.object_locking_enabled ? true : null
## This for_each block is NOT a loop to attach to multiple retention blocks.
## This block is only used to conditionally add retention block depending on retention is enabled.
dynamic "retention_rule" {
for_each = local.retention_enabled
content {
default = var.retention_default
maximum = var.retention_maximum
minimum = var.retention_minimum
permanent = var.retention_permanent
}
}
## This for_each block is NOT a loop to attach to multiple Activity Tracker instances.
## This block is only used to conditionally attach activity tracker depending on AT CRN is provided.
dynamic "activity_tracking" {
for_each = local.at_enabled
content {
read_data_events = var.activity_tracker_read_data_events
write_data_events = var.activity_tracker_write_data_events
management_events = var.activity_tracker_management_events
}
}
## This for_each block is NOT a loop to attach to multiple Sysdig instances.
## This block is only used to conditionally attach monitoring depending on Sydig CRN is provided.
dynamic "metrics_monitoring" {
for_each = local.metrics_enabled
content {
usage_metrics_enabled = var.usage_metrics_enabled
request_metrics_enabled = var.request_metrics_enabled
metrics_monitoring_crn = var.monitoring_crn
}
}
dynamic "object_versioning" {
for_each = local.object_versioning_enabled
content {
enable = var.object_versioning_enabled
}
}
}
locals {
expiration_or_archiving_rule_enabled = (length(local.expire_enabled) != 0 || length(local.archive_enabled) != 0)
create_cos_bucket = (var.kms_encryption_enabled && var.create_cos_bucket) ? true : false
create_cos_bucket1 = (!var.kms_encryption_enabled && var.create_cos_bucket) ? true : false
cos_bucket_resource = local.create_cos_bucket ? ibm_cos_bucket.cos_bucket : local.create_cos_bucket1 ? ibm_cos_bucket.cos_bucket1 : null
## Only one of these values can be set, leaving 2 of 3 null, compact function removes nulls.
## We then take the only value left in the list
cos_region = compact([var.region, var.cross_region_location, var.single_site_location])[0]
}
resource "time_sleep" "wait_for_cos_bucket_lifecycle" {
count = (local.create_cos_bucket || local.create_cos_bucket1) && local.expiration_or_archiving_rule_enabled ? 1 : 0
# workaround for https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5778
create_duration = "90s"
}
resource "ibm_cos_bucket_lifecycle_configuration" "cos_bucket_lifecycle" {
count = (local.create_cos_bucket || local.create_cos_bucket1) && local.expiration_or_archiving_rule_enabled ? 1 : 0
depends_on = [time_sleep.wait_for_cos_bucket_lifecycle]
bucket_crn = local.cos_bucket_resource[count.index].crn
bucket_location = local.cos_region
dynamic "lifecycle_rule" {
## This for_each block is NOT a loop to attach to multiple expiration blocks.
## This block is only used to conditionally add expiration block depending on expire rule is enabled.
for_each = local.expire_enabled
content {
expiration {
days = var.expire_days
}
filter {
prefix = var.expire_filter_prefix != null ? var.expire_filter_prefix : ""
}
rule_id = "expiry-rule"
status = "enable"
}
}
dynamic "lifecycle_rule" {
## This for_each block is NOT a loop to attach to multiple transition blocks.
## This block is only used to conditionally add retention block depending on archive rule is enabled.
for_each = local.archive_enabled
content {
transition {
days = var.archive_days
## The new values changed from Capatalized to all Upper case, avoid having to change values in new release
storage_class = upper(var.archive_type)
}
filter {
prefix = var.archive_filter_prefix != null ? var.archive_filter_prefix : ""
}
rule_id = "archive-rule"
status = "enable"
}
}
}
locals {
bucket_crn = var.create_cos_bucket ? (var.kms_encryption_enabled ? ibm_cos_bucket.cos_bucket[0].crn : ibm_cos_bucket.cos_bucket1[0].crn) : null
bucket_id = var.create_cos_bucket ? (var.kms_encryption_enabled ? ibm_cos_bucket.cos_bucket[0].id : ibm_cos_bucket.cos_bucket1[0].id) : null
bucket_region = var.create_cos_bucket ? (var.kms_encryption_enabled ? ibm_cos_bucket.cos_bucket[0].region_location : ibm_cos_bucket.cos_bucket1[0].region_location) : null
bucket_name = var.create_cos_bucket ? (var.kms_encryption_enabled ? ibm_cos_bucket.cos_bucket[0].bucket_name : ibm_cos_bucket.cos_bucket1[0].bucket_name) : null
bucket_storage_class = var.create_cos_bucket ? (var.kms_encryption_enabled ? ibm_cos_bucket.cos_bucket[0].storage_class : ibm_cos_bucket.cos_bucket1[0].storage_class) : null
s3_endpoint_public = var.create_cos_bucket ? (var.kms_encryption_enabled ? ibm_cos_bucket.cos_bucket[0].s3_endpoint_public : ibm_cos_bucket.cos_bucket1[0].s3_endpoint_public) : null
s3_endpoint_private = var.create_cos_bucket ? (var.kms_encryption_enabled ? ibm_cos_bucket.cos_bucket[0].s3_endpoint_private : ibm_cos_bucket.cos_bucket1[0].s3_endpoint_private) : null
s3_endpoint_direct = var.create_cos_bucket ? (var.kms_encryption_enabled ? ibm_cos_bucket.cos_bucket[0].s3_endpoint_direct : ibm_cos_bucket.cos_bucket1[0].s3_endpoint_direct) : null
}
##############################################################################
# Bucket retention lock
##############################################################################
resource "ibm_cos_bucket_object_lock_configuration" "lock_configuration" {
count = var.object_locking_enabled ? 1 : 0
bucket_crn = local.bucket_crn
bucket_location = local.bucket_region
endpoint_type = var.management_endpoint_type_for_bucket
# This is not a loop. Include either the `days` or `years`.
dynamic "object_lock_configuration" {
for_each = local.object_lock_duration_days
content {
object_lock_enabled = "Enabled" # only accepts "Enabled"
object_lock_rule {
default_retention {
mode = "COMPLIANCE" # only accepts "COMPLIANCE"
days = var.object_lock_duration_days
}
}
}
}
# This is not a loop. Include either the `days` or `years`.
dynamic "object_lock_configuration" {
for_each = local.object_lock_duration_years
content {
object_lock_enabled = "Enabled" # only accepts "Enabled"
object_lock_rule {
default_retention {
mode = "COMPLIANCE" # only accepts "COMPLIANCE"
years = var.object_lock_duration_years
}
}
}
}
}
##############################################################################
# Context Based Restrictions
##############################################################################
locals {
default_operations = [{
api_types = [{
api_type_id = "crn:v1:bluemix:public:context-based-restrictions::::api-type:"
}]
}]
}
module "bucket_cbr_rule" {
count = (length(var.bucket_cbr_rules) > 0 && var.create_cos_bucket) ? length(var.bucket_cbr_rules) : 0
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
version = "1.29.0"
rule_description = var.bucket_cbr_rules[count.index].description
enforcement_mode = var.bucket_cbr_rules[count.index].enforcement_mode
rule_contexts = var.bucket_cbr_rules[count.index].rule_contexts
resources = [{
attributes = [
{
name = "accountId"
value = var.bucket_cbr_rules[count.index].account_id
operator = "stringEquals"
},
{
name = "resource"
value = local.bucket_name
operator = "stringEquals"
},
{
name = "serviceInstance"
value = local.cos_instance_guid
operator = "stringEquals"
},
{
name = "serviceName"
value = "cloud-object-storage"
operator = "stringEquals"
}
],
tags = var.bucket_cbr_rules[count.index].tags
}]
operations = var.bucket_cbr_rules[count.index].operations == null ? local.default_operations : var.bucket_cbr_rules[count.index].operations
}
module "instance_cbr_rule" {
count = length(var.instance_cbr_rules)
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
version = "1.29.0"
rule_description = var.instance_cbr_rules[count.index].description
enforcement_mode = var.instance_cbr_rules[count.index].enforcement_mode
rule_contexts = var.instance_cbr_rules[count.index].rule_contexts
resources = [{
attributes = [
{
name = "accountId"
value = var.instance_cbr_rules[count.index].account_id
operator = "stringEquals"
},
{
name = "serviceInstance"
value = local.cos_instance_guid
operator = "stringEquals"
},
{
name = "serviceName"
value = "cloud-object-storage"
operator = "stringEquals"
}
],
tags = var.instance_cbr_rules[count.index].tags
}]
operations = var.instance_cbr_rules[count.index].operations == null ? local.default_operations : var.instance_cbr_rules[count.index].operations
}
locals {
bucket_rule_ids = [for instance in module.bucket_cbr_rule : instance.rule_id]
instance_rule_ids = flatten([for instance in module.instance_cbr_rule : instance.rule_id])
all_rule_ids = concat(local.bucket_rule_ids, local.instance_rule_ids)
}