Skip to content

Commit 85b939d

Browse files
jor2Jordan-Williams2
andauthored
feat: Since Activity Tracker is a deprecated service, the ability to pass the CRN of an Activity Tracker instance (existing_activity_tracker_crn) in the DA solution to configure the IBM Cloud Object Storage bucket that is used for storing failed events has been removed. Events are now sent according to what is specified in the accounts ATracker Event Routing service configuration. This change will cause an update in place on the COS bucket if using the DA to create one. (#316)
Co-authored-by: Jordan-Williams2 <[email protected]>
1 parent 3171580 commit 85b939d

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

solutions/standard/main.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ locals {
149149
module "cos" {
150150
count = local.create_cos_bucket ? 1 : 0
151151
source = "terraform-ibm-modules/cos/ibm"
152-
version = "8.11.15"
152+
version = "8.12.0"
153153
create_cos_instance = var.existing_cos_instance_crn == null ? true : false
154154
create_cos_bucket = local.create_cos_bucket
155155
existing_cos_instance_id = var.existing_cos_instance_crn
@@ -168,7 +168,6 @@ module "cos" {
168168
kms_key_crn = local.cos_kms_key_crn
169169
monitoring_crn = var.existing_monitoring_crn
170170
retention_enabled = var.retention_enabled
171-
activity_tracker_crn = var.existing_activity_tracker_crn
172171
archive_days = var.archive_days
173172
}
174173

solutions/standard/variables.tf

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -268,13 +268,6 @@ variable "management_endpoint_type_for_bucket" {
268268
}
269269
}
270270

271-
variable "existing_activity_tracker_crn" {
272-
type = string
273-
nullable = true
274-
default = null
275-
description = "The CRN of an Activity Tracker instance to configure on the IBM Cloud Object Storage bucket that is used for storing failed events. If no value passed, events are sent to the instance associated to the container's location unless otherwise specified in the Activity Tracker Event Routing service configuration. Ignored if using existing Object Storage bucket."
276-
}
277-
278271
variable "existing_cos_endpoint" {
279272
type = string
280273
description = "The endpoint URL for your bucket region. [Learn more](https://cloud.ibm.com/docs/cloud-object-storage?topic=cloud-object-storage-endpoints). Only required if using an existing bucket with the `existing_cos_bucket_name` variable."

0 commit comments

Comments
 (0)