Skip to content

Commit ee903fd

Browse files
authored
feat: enabled COS bucket monitoring and activity tracking by default in the DA solution (#255)
1 parent d03e2a5 commit ee903fd

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.secrets.baseline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"files": "go.sum|^.secrets.baseline$",
44
"lines": null
55
},
6-
"generated_at": "2023-12-10T05:17:42Z",
6+
"generated_at": "2023-12-11T05:17:42Z",
77
"plugins_used": [
88
{
99
"name": "AWSKeyDetector"

solutions/standard/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ locals {
8888
module "cos" {
8989
count = var.existing_cos_bucket_name != null ? 0 : 1
9090
source = "terraform-ibm-modules/cos/ibm"
91-
version = "8.5.3"
91+
version = "8.8.0"
9292
create_cos_instance = var.existing_cos_instance_crn == null ? true : false
9393
create_cos_bucket = var.existing_cos_bucket_name == null ? true : false
9494
existing_cos_instance_id = var.existing_cos_instance_crn
@@ -105,7 +105,7 @@ module "cos" {
105105
management_endpoint_type_for_bucket = var.management_endpoint_type_for_bucket
106106
existing_kms_instance_guid = local.kms_instance_guid
107107
kms_key_crn = local.cos_kms_key_crn
108-
sysdig_crn = var.existing_monitoring_crn
108+
monitoring_crn = var.existing_monitoring_crn
109109
retention_enabled = var.retention_enabled
110110
activity_tracker_crn = var.existing_activity_tracker_crn
111111
archive_days = var.archive_days

solutions/standard/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ variable "existing_monitoring_crn" {
2929
type = string
3030
nullable = true
3131
default = null
32-
description = "(Optional) The CRN of an existing IBM Cloud Monitoring instance. It is used to monitor the IBM Cloud Object Storage bucket that is used for storing failed events."
32+
description = "The CRN of an IBM Cloud Monitoring instance used to monitor the IBM Cloud Object Storage bucket that is used for storing failed events. If no value passed, metrics are sent to the instance associated to the container's location unless otherwise specified in the Metrics Router service configuration. Ignored if using existing Object Storage bucket."
3333
}
3434

3535
variable "prefix" {
@@ -259,7 +259,7 @@ variable "existing_activity_tracker_crn" {
259259
type = string
260260
nullable = true
261261
default = null
262-
description = "(Optional) The CRN of an existing Activity Tracker instance. Used to send Object Storage bucket log data and all object write events to the Activity Tracker. Used only if not supplying an existing Object Storage bucket."
262+
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."
263263
}
264264

265265
variable "existing_cos_endpoint" {

0 commit comments

Comments
 (0)