Skip to content

Commit 0187da9

Browse files
fix(deps): update dependencies (#170)
1 parent 5fe0043 commit 0187da9

File tree

13 files changed

+74
-55
lines changed

13 files changed

+74
-55
lines changed

.secrets.baseline

Lines changed: 2 additions & 2 deletions
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": "2025-12-05T16:41:38Z",
6+
"generated_at": "2026-01-23T20:36:07Z",
77
"plugins_used": [
88
{
99
"name": "AWSKeyDetector"
@@ -82,7 +82,7 @@
8282
"hashed_secret": "ff9ee043d85595eb255c05dfe32ece02a53efbb2",
8383
"is_secret": false,
8484
"is_verified": false,
85-
"line_number": 54,
85+
"line_number": 55,
8686
"type": "Secret Keyword",
8787
"verified_result": null
8888
}

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ This module supports configuring an IBM Cloud Activity Tracker event routing tar
1212
## Overview
1313
* [terraform-ibm-activity-tracker](#terraform-ibm-activity-tracker)
1414
* [Examples](./examples)
15-
* <div style="display: inline-block;"><a href="./examples/advanced">Advanced example</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=at-advanced-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-activity-tracker/tree/main/examples/advanced" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
16-
* <div style="display: inline-block;"><a href="./examples/basic">Basic example</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=at-basic-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-activity-tracker/tree/main/examples/basic" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
15+
:information_source: Ctrl/Cmd+Click or right-click on the Schematics deploy button to open in a new tab
16+
* <a href="./examples/advanced">Advanced example</a> <a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=activity-tracker-advanced-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-activity-tracker/tree/main/examples/advanced"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom; margin-left: 5px;"></a>
17+
* <a href="./examples/basic">Basic example</a> <a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=activity-tracker-basic-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-activity-tracker/tree/main/examples/basic"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom; margin-left: 5px;"></a>
1718
* [Contributing](#contributing)
1819
<!-- END OVERVIEW HOOK -->
1920

examples/advanced/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Advanced example
22

3+
<!-- BEGIN SCHEMATICS DEPLOY HOOK -->
4+
<a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=activity-tracker-advanced-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-activity-tracker/tree/main/examples/advanced"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom;"></a>
5+
<!-- END SCHEMATICS DEPLOY HOOK -->
6+
7+
38
<!-- There is a pre-commit hook that will take the title of each example add include it in the repos main README.md -->
49
<!-- Add text below should describe exactly what resources are provisioned / configured by the example -->
510

@@ -10,3 +15,7 @@ An end-to-end advanced example that will provision the following:
1015
- A new COS instance and KMS encrypted bucket.
1116
- An Activity Tracker target for the new COS bucket, Cloud Logs instance and Event Streams instance.
1217
- And Activity Tracker route for the above created targets.
18+
19+
<!-- BEGIN SCHEMATICS DEPLOY TIP HOOK -->
20+
:information_source: Ctrl/Cmd+Click or right-click on the Schematics deploy button to open in a new tab
21+
<!-- END SCHEMATICS DEPLOY TIP HOOK -->

examples/advanced/main.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module "resource_group" {
1616

1717
module "cloud_logs" {
1818
source = "terraform-ibm-modules/cloud-logs/ibm"
19-
version = "1.10.21"
19+
version = "1.10.25"
2020
resource_group_id = module.resource_group.resource_group_id
2121
region = var.region
2222
data_storage = {
@@ -39,7 +39,7 @@ locals {
3939

4040
module "event_streams" {
4141
source = "terraform-ibm-modules/event-streams/ibm"
42-
version = "4.6.16"
42+
version = "4.6.19"
4343
es_name = "${var.prefix}-eventsteams-instance"
4444
tags = var.resource_tags
4545
region = var.region
@@ -68,7 +68,7 @@ locals {
6868

6969
module "key_protect" {
7070
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
71-
version = "5.5.21"
71+
version = "5.5.22"
7272
resource_group_id = module.resource_group.resource_group_id
7373
region = var.region
7474
resource_tags = var.resource_tags
@@ -91,7 +91,7 @@ module "key_protect" {
9191

9292
module "cos" {
9393
source = "terraform-ibm-modules/cos/ibm"
94-
version = "10.8.3"
94+
version = "10.9.1"
9595
resource_group_id = module.resource_group.resource_group_id
9696
cos_instance_name = "${var.prefix}-cos"
9797
cos_tags = var.resource_tags
@@ -104,7 +104,7 @@ locals {
104104

105105
module "buckets" {
106106
source = "terraform-ibm-modules/cos/ibm//modules/buckets"
107-
version = "10.8.3"
107+
version = "10.9.1"
108108
bucket_configs = [
109109
{
110110
bucket_name = local.at_bucket_name

examples/basic/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Basic example
22

3+
<!-- BEGIN SCHEMATICS DEPLOY HOOK -->
4+
<a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=activity-tracker-basic-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-activity-tracker/tree/main/examples/basic"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom;"></a>
5+
<!-- END SCHEMATICS DEPLOY HOOK -->
6+
7+
38
<!--
49
The basic example should call the module(s) stored in this repository with a basic configuration.
510
Note, there is a pre-commit hook that will take the title of each example and include it in the repos main README.md.
@@ -11,3 +16,7 @@ An end-to-end basic example that will provision the following:
1116
- A new COS instance and bucket.
1217
- An Activity Tracker target for the new COS bucket.
1318
- An Activity Tracker route for the COS bucket target.
19+
20+
<!-- BEGIN SCHEMATICS DEPLOY TIP HOOK -->
21+
:information_source: Ctrl/Cmd+Click or right-click on the Schematics deploy button to open in a new tab
22+
<!-- END SCHEMATICS DEPLOY TIP HOOK -->

examples/basic/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module "resource_group" {
1616

1717
module "cos" {
1818
source = "terraform-ibm-modules/cos/ibm"
19-
version = "10.8.3"
19+
version = "10.9.1"
2020
resource_group_id = module.resource_group.resource_group_id
2121
region = var.region
2222
cos_instance_name = "${var.prefix}-cos"

solutions/event-routing-account-settings/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# Lock DA into an exact provider version - renovate automation will keep it updated
55
ibm = {
66
source = "ibm-cloud/ibm"
7-
version = "1.86.1"
7+
version = "1.87.2"
88
}
99
}
1010
}

solutions/fully-configurable/main.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,14 +137,14 @@ resource "ibm_iam_authorization_policy" "atracker_cos" {
137137
module "kms_instance_crn_parser" {
138138
count = var.existing_kms_instance_crn != null ? 1 : 0
139139
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
140-
version = "1.3.7"
140+
version = "1.4.1"
141141
crn = var.existing_kms_instance_crn
142142
}
143143

144144
module "existing_kms_key_crn_parser" {
145145
count = var.existing_cos_kms_key_crn != null ? 1 : 0
146146
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
147-
version = "1.3.7"
147+
version = "1.4.1"
148148
crn = var.existing_cos_kms_key_crn
149149
}
150150

@@ -154,7 +154,7 @@ module "kms" {
154154
}
155155
count = (local.use_kms_module && (length(coalesce(local.buckets_config, [])) != 0)) ? 1 : 0 # no need to create any KMS resources if `kms_encryption_enabled_buckets` is false or `existing_cos_kms_key_crn` is provided or `buckets_config` length is 0
156156
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
157-
version = "5.5.21"
157+
version = "5.5.22"
158158
create_key_protect_instance = false
159159
region = local.kms_region
160160
existing_kms_instance_crn = var.existing_kms_instance_crn
@@ -185,7 +185,7 @@ module "kms" {
185185
module "cos_crn_parser" {
186186
count = var.existing_cos_instance_crn != null ? 1 : 0
187187
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
188-
version = "1.3.7"
188+
version = "1.4.1"
189189
crn = var.existing_cos_instance_crn
190190
}
191191

@@ -252,7 +252,7 @@ module "cos_bucket" {
252252
}
253253
count = length(coalesce(local.buckets_config, [])) != 0 ? 1 : 0 # no need to call COS module if consumer is using existing COS bucket
254254
source = "terraform-ibm-modules/cos/ibm//modules/buckets"
255-
version = "10.8.3"
255+
version = "10.9.1"
256256
bucket_configs = [
257257
for value in local.buckets_config :
258258
{

solutions/fully-configurable/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# Lock DA into an exact provider version - renovate automation will keep it updated
55
ibm = {
66
source = "ibm-cloud/ibm"
7-
version = "1.86.1"
7+
version = "1.87.2"
88
}
99
time = {
1010
source = "hashicorp/time"

0 commit comments

Comments
 (0)