Skip to content

Commit dba4c72

Browse files
fix(deps): update dependencies (#108)
1 parent fc9e2bf commit dba4c72

File tree

10 files changed

+86
-82
lines changed

10 files changed

+86
-82
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
call-terraform-ci-pipeline:
11-
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-terraform-module-ci-v2.yml@v1.22.5
11+
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-terraform-module-ci-v2.yml@v1.23.2
1212
secrets: inherit
1313
with:
1414
craSCCv2: true

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ on:
88

99
jobs:
1010
call-terraform-release-pipeline:
11-
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-release.yml@v1.22.5
11+
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-release.yml@v1.23.2
1212
secrets: inherit

examples/advanced/main.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module "resource_group" {
66
source = "terraform-ibm-modules/resource-group/ibm"
7-
version = "1.3.0"
7+
version = "1.4.0"
88
# if an existing resource group is not set (null) create a new one using prefix
99
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
1010
existing_resource_group_name = var.resource_group
@@ -16,7 +16,7 @@ module "resource_group" {
1616

1717
module "cloud_logs" {
1818
source = "terraform-ibm-modules/cloud-logs/ibm"
19-
version = "1.6.28"
19+
version = "1.9.0"
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.1.8"
42+
version = "4.1.18"
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.2.0"
71+
version = "5.4.0"
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.2.21"
94+
version = "10.5.0"
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.21"
107+
version = "10.5.0"
108108
bucket_configs = [
109109
{
110110
bucket_name = local.at_bucket_name

examples/basic/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module "resource_group" {
66
source = "terraform-ibm-modules/resource-group/ibm"
7-
version = "1.3.0"
7+
version = "1.4.0"
88
# if an existing resource group is not set (null) create a new one using prefix
99
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
1010
existing_resource_group_name = var.resource_group
@@ -16,7 +16,7 @@ module "resource_group" {
1616

1717
module "cos" {
1818
source = "terraform-ibm-modules/cos/ibm"
19-
version = "10.2.21"
19+
version = "10.5.0"
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.82.1"
7+
version = "1.84.1"
88
}
99
}
1010
}

solutions/fully-configurable/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ module "kms" {
155155
}
156156
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
157157
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
158-
version = "5.2.0"
158+
version = "5.4.0"
159159
create_key_protect_instance = false
160160
region = local.kms_region
161161
existing_kms_instance_crn = var.existing_kms_instance_crn
@@ -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.21"
249+
version = "10.5.0"
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.82.1"
7+
version = "1.84.1"
88
}
99
time = {
1010
source = "hashicorp/time"

tests/go.mod

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ module github.com/terraform-ibm-modules/terraform-ibm-activity-tracker
22

33
go 1.24.0
44

5-
toolchain go1.25.1
5+
toolchain go1.25.3
66

77
require (
88
github.com/IBM/go-sdk-core/v5 v5.21.0
9-
github.com/gruntwork-io/terratest v0.50.0
9+
github.com/gruntwork-io/terratest v0.51.0
1010
github.com/stretchr/testify v1.11.1
11-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.9
11+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.14
1212
)
1313

1414
require (
1515
dario.cat/mergo v1.0.0 // indirect
1616
github.com/IBM-Cloud/bluemix-go v0.0.0-20240719075425-078fcb3a55be // indirect
17-
github.com/IBM-Cloud/power-go-client v1.12.0 // indirect
18-
github.com/IBM/cloud-databases-go-sdk v0.8.0 // indirect
19-
github.com/IBM/platform-services-go-sdk v0.86.1 // indirect
20-
github.com/IBM/project-go-sdk v0.3.6 // indirect
17+
github.com/IBM-Cloud/power-go-client v1.13.0 // indirect
18+
github.com/IBM/cloud-databases-go-sdk v0.8.1 // indirect
19+
github.com/IBM/platform-services-go-sdk v0.89.0 // indirect
20+
github.com/IBM/project-go-sdk v0.3.9 // indirect
2121
github.com/IBM/schematics-go-sdk v0.4.0 // indirect
2222
github.com/IBM/vpc-go-sdk v1.0.2 // indirect
2323
github.com/Microsoft/go-winio v0.6.2 // indirect
@@ -34,22 +34,23 @@ require (
3434
github.com/ghodss/yaml v1.0.0 // indirect
3535
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
3636
github.com/go-git/go-billy/v5 v5.6.2 // indirect
37-
github.com/go-git/go-git/v5 v5.16.2 // indirect
37+
github.com/go-git/go-git/v5 v5.16.3 // indirect
3838
github.com/go-logr/logr v1.4.2 // indirect
3939
github.com/go-logr/stdr v1.2.2 // indirect
4040
github.com/go-openapi/analysis v0.23.0 // indirect
41-
github.com/go-openapi/errors v0.22.2 // indirect
41+
github.com/go-openapi/errors v0.22.3 // indirect
4242
github.com/go-openapi/jsonpointer v0.21.1 // indirect
4343
github.com/go-openapi/jsonreference v0.21.0 // indirect
4444
github.com/go-openapi/loads v0.22.0 // indirect
4545
github.com/go-openapi/runtime v0.28.0 // indirect
4646
github.com/go-openapi/spec v0.21.0 // indirect
47-
github.com/go-openapi/strfmt v0.23.0 // indirect
47+
github.com/go-openapi/strfmt v0.24.0 // indirect
4848
github.com/go-openapi/swag v0.23.1 // indirect
4949
github.com/go-openapi/validate v0.24.0 // indirect
5050
github.com/go-playground/locales v0.14.1 // indirect
5151
github.com/go-playground/universal-translator v0.18.1 // indirect
5252
github.com/go-playground/validator/v10 v10.26.0 // indirect
53+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
5354
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
5455
github.com/google/go-cmp v0.7.0 // indirect
5556
github.com/google/uuid v1.6.0 // indirect
@@ -61,7 +62,7 @@ require (
6162
github.com/hashicorp/go-safetemp v1.0.0 // indirect
6263
github.com/hashicorp/go-version v1.7.0 // indirect
6364
github.com/hashicorp/hcl/v2 v2.22.0 // indirect
64-
github.com/hashicorp/terraform-json v0.26.0 // indirect
65+
github.com/hashicorp/terraform-json v0.27.2 // indirect
6566
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
6667
github.com/jinzhu/copier v0.4.0 // indirect
6768
github.com/josharian/intern v1.0.0 // indirect
@@ -73,7 +74,6 @@ require (
7374
github.com/mitchellh/go-homedir v1.1.0 // indirect
7475
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
7576
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
76-
github.com/mitchellh/mapstructure v1.5.0 // indirect
7777
github.com/oklog/ulid v1.3.1 // indirect
7878
github.com/opentracing/opentracing-go v1.2.0 // indirect
7979
github.com/pjbgf/sha1cd v0.3.2 // indirect
@@ -84,21 +84,22 @@ require (
8484
github.com/tmccombs/hcl2json v0.6.4 // indirect
8585
github.com/ulikunitz/xz v0.5.11 // indirect
8686
github.com/xanzy/ssh-agent v0.3.3 // indirect
87-
github.com/zclconf/go-cty v1.16.3 // indirect
88-
go.mongodb.org/mongo-driver v1.17.3 // indirect
87+
github.com/zclconf/go-cty v1.16.4 // indirect
88+
go.mongodb.org/mongo-driver v1.17.4 // indirect
8989
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
9090
go.opentelemetry.io/otel v1.35.0 // indirect
9191
go.opentelemetry.io/otel/metric v1.35.0 // indirect
9292
go.opentelemetry.io/otel/trace v1.35.0 // indirect
93-
golang.org/x/crypto v0.41.0 // indirect
94-
golang.org/x/mod v0.26.0 // indirect
95-
golang.org/x/net v0.42.0 // indirect
93+
go.yaml.in/yaml/v2 v2.4.2 // indirect
94+
golang.org/x/crypto v0.43.0 // indirect
95+
golang.org/x/mod v0.28.0 // indirect
96+
golang.org/x/net v0.45.0 // indirect
9697
golang.org/x/sync v0.17.0 // indirect
97-
golang.org/x/sys v0.35.0 // indirect
98-
golang.org/x/text v0.28.0 // indirect
99-
golang.org/x/tools v0.35.0 // indirect
98+
golang.org/x/sys v0.37.0 // indirect
99+
golang.org/x/text v0.30.0 // indirect
100+
golang.org/x/tools v0.37.0 // indirect
100101
gopkg.in/warnings.v0 v0.1.2 // indirect
101102
gopkg.in/yaml.v2 v2.4.0 // indirect
102103
gopkg.in/yaml.v3 v3.0.1 // indirect
103-
sigs.k8s.io/yaml v1.4.0 // indirect
104+
sigs.k8s.io/yaml v1.6.0 // indirect
104105
)

0 commit comments

Comments
 (0)