Skip to content

Commit f1f0b1e

Browse files
fix(deps): update dependencies (#89)
1 parent da99fe2 commit f1f0b1e

File tree

10 files changed

+34
-22
lines changed

10 files changed

+34
-22
lines changed

examples/advanced/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ locals {
3939

4040
module "event_streams" {
4141
source = "terraform-ibm-modules/event-streams/ibm"
42-
version = "4.0.26"
42+
version = "4.0.27"
4343
es_name = "${var.prefix}-eventsteams-instance"
4444
tags = var.resource_tags
4545
region = var.region
@@ -91,7 +91,7 @@ module "key_protect" {
9191

9292
module "cos" {
9393
source = "terraform-ibm-modules/cos/ibm"
94-
version = "10.2.6"
94+
version = "10.2.7"
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.2.6"
107+
version = "10.2.7"
108108
bucket_configs = [
109109
{
110110
bucket_name = local.at_bucket_name

examples/basic/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ locals {
2020

2121
module "event_streams" {
2222
source = "terraform-ibm-modules/event-streams/ibm"
23-
version = "4.0.26"
23+
version = "4.0.27"
2424
es_name = "${var.prefix}-eventsteams"
2525
tags = var.resource_tags
2626
region = var.region

ibm_catalog.json

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,9 @@
316316
"description": "Enable this to create an IBM Cloud Object Storage(COS) instance. The buckets to store events will be created by the Activity Tracker Event Routing deployable architecture.",
317317
"id": "68921490-2778-4930-ac6d-bae7be6cd958-global",
318318
"version": "v10.2.1",
319-
"flavors": ["instance"],
319+
"flavors": [
320+
"instance"
321+
],
320322
"catalog_id": "7a4d68b4-cf8b-40cd-a3d1-f49aff526eb3",
321323
"optional": true,
322324
"on_by_default": true,
@@ -346,7 +348,9 @@
346348
"description": "Enable when you want to create your own managed keys to encrypt the buckets. Select only if existing KMS instance or Key is not provided. ",
347349
"id": "2cad4789-fa90-4886-9c9e-857081c273ee-global",
348350
"version": "v5.1.19",
349-
"flavors": ["fully-configurable"],
351+
"flavors": [
352+
"fully-configurable"
353+
],
350354
"catalog_id": "7a4d68b4-cf8b-40cd-a3d1-f49aff526eb3",
351355
"optional": true,
352356
"on_by_default": true,
@@ -375,7 +379,9 @@
375379
"name": "deploy-arch-ibm-cloud-logs",
376380
"description": "Enable this to create an IBM Cloud Logs (ICL) Instance which can be used for storage and analysis of events ingested by Activity Tracker. ",
377381
"catalog_id": "7a4d68b4-cf8b-40cd-a3d1-f49aff526eb3",
378-
"flavors": ["fully-configurable"],
382+
"flavors": [
383+
"fully-configurable"
384+
],
379385
"id": "63d8ae58-fbf3-41ce-b844-0fb5b85882ab-global",
380386
"version": "v1.6.11",
381387
"optional": true,
@@ -406,7 +412,9 @@
406412
"description": "Enable IBM Cloud Monitoring to gain operational visibility into your cloud storage buckets. ",
407413
"id": "73debdbf-894f-4c14-81c7-5ece3a70b67d-global",
408414
"version": "v1.6.4",
409-
"flavors": ["fully-configurable"],
415+
"flavors": [
416+
"fully-configurable"
417+
],
410418
"catalog_id": "7a4d68b4-cf8b-40cd-a3d1-f49aff526eb3",
411419
"optional": true,
412420
"on_by_default": true,
@@ -510,11 +518,15 @@
510518
"iam_permissions": [
511519
{
512520
"service_name": "All account management services",
513-
"role_crns": ["crn:v1:bluemix:public:iam::::role:Administrator"]
521+
"role_crns": [
522+
"crn:v1:bluemix:public:iam::::role:Administrator"
523+
]
514524
},
515525
{
516526
"service_name": "atracker",
517-
"role_crns": ["crn:v1:bluemix:public:iam::::role:Administrator"]
527+
"role_crns": [
528+
"crn:v1:bluemix:public:iam::::role:Administrator"
529+
]
518530
}
519531
],
520532
"architecture": {

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.81.1"
7+
version = "1.82.0"
88
}
99
}
1010
}

solutions/fully-configurable/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ module "cos_bucket" {
246246
}
247247
count = length(coalesce(local.buckets_config, [])) != 0 ? 1 : 0 # no need to call COS module if consumer is using existing COS bucket
248248
source = "terraform-ibm-modules/cos/ibm//modules/buckets"
249-
version = "10.2.6"
249+
version = "10.2.7"
250250
bucket_configs = [
251251
for value in local.buckets_config :
252252
{

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.81.1"
7+
version = "1.82.0"
88
}
99
time = {
1010
source = "hashicorp/time"

tests/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ toolchain go1.25.0
66

77
require (
88
github.com/gruntwork-io/terratest v0.50.0
9-
github.com/stretchr/testify v1.11.0
10-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.59.1
9+
github.com/stretchr/testify v1.11.1
10+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.0
1111
)
1212

1313
require (

tests/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -293,10 +293,10 @@ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
293293
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
294294
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
295295
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
296-
github.com/stretchr/testify v1.11.0 h1:ib4sjIrwZKxE5u/Japgo/7SJV3PvgjGiRNAvTVGqQl8=
297-
github.com/stretchr/testify v1.11.0/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
298-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.59.1 h1:9/uYvUFFLIH91F16AiJqP/LZeGi4t2CYtc8iz3bBXdQ=
299-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.59.1/go.mod h1:kdhZ+FeS71D+tB0E2Sh1ISD3zQ+RThPX5SyFqduo7G8=
296+
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
297+
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
298+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.0 h1:bGNtXPKstiUJAQZXmXhKzVrK4UkR1S5btcfT1QA/QRg=
299+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.0/go.mod h1:kdhZ+FeS71D+tB0E2Sh1ISD3zQ+RThPX5SyFqduo7G8=
300300
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
301301
github.com/tmccombs/hcl2json v0.6.4 h1:/FWnzS9JCuyZ4MNwrG4vMrFrzRgsWEOVi+1AyYUVLGw=
302302
github.com/tmccombs/hcl2json v0.6.4/go.mod h1:+ppKlIW3H5nsAsZddXPy2iMyvld3SHxyjswOZhavRDk=

tests/resources/main.tf

Lines changed: 2 additions & 2 deletions
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.2.6"
19+
version = "10.2.7"
2020
resource_group_id = module.resource_group.resource_group_id
2121
cos_instance_name = "${var.prefix}-cos"
2222
cos_tags = var.resource_tags
@@ -34,7 +34,7 @@ locals {
3434

3535
module "buckets" {
3636
source = "terraform-ibm-modules/cos/ibm//modules/buckets"
37-
version = "10.2.6"
37+
version = "10.2.7"
3838
bucket_configs = [
3939
{
4040
bucket_name = local.logs_bucket_name

0 commit comments

Comments
 (0)