Skip to content

Commit 005aa64

Browse files
fix(deps): update dependencies
1 parent 00dd8a6 commit 005aa64

File tree

11 files changed

+71
-71
lines changed

11 files changed

+71
-71
lines changed

.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.23.2
11+
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-release.yml@v1.24.0
1212
secrets: inherit

examples/advanced/main.tf

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

1717
module "key_protect" {
1818
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
19-
version = "5.4.10"
19+
version = "5.5.0"
2020
key_protect_instance_name = "${var.prefix}-key-protect"
2121
resource_group_id = module.resource_group.resource_group_id
2222
region = var.region
@@ -39,7 +39,7 @@ module "key_protect" {
3939

4040
module "event_notifications" {
4141
source = "terraform-ibm-modules/event-notifications/ibm"
42-
version = "2.10.12"
42+
version = "2.10.14"
4343
resource_group_id = module.resource_group.resource_group_id
4444
name = "${var.prefix}-en"
4545
tags = var.resource_tags
@@ -124,7 +124,7 @@ module "secrets_manager" {
124124
# Create new code engine project
125125
module "code_engine_project" {
126126
source = "terraform-ibm-modules/code-engine/ibm//modules/project"
127-
version = "4.6.10"
127+
version = "4.6.12"
128128
name = "${var.prefix}-project"
129129
resource_group_id = module.resource_group.resource_group_id
130130
}
@@ -137,7 +137,7 @@ locals {
137137

138138
module "code_engine_secret" {
139139
source = "terraform-ibm-modules/code-engine/ibm//modules/secret"
140-
version = "4.6.10"
140+
version = "4.6.12"
141141
name = "${var.prefix}-rs"
142142
project_id = module.code_engine_project.id
143143
format = "registry"
@@ -157,7 +157,7 @@ resource "ibm_cr_namespace" "rg_namespace" {
157157
# Build example Go application in Code Engine project which dynamically generates User IBM Cloud IAM API Keys
158158
module "code_engine_build" {
159159
source = "terraform-ibm-modules/code-engine/ibm//modules/build"
160-
version = "4.6.10"
160+
version = "4.6.12"
161161
name = "${var.prefix}-build"
162162
region = var.region
163163
ibmcloud_api_key = var.ibmcloud_api_key
@@ -186,7 +186,7 @@ locals {
186186
module "code_engine_job" {
187187
depends_on = [module.code_engine_build]
188188
source = "terraform-ibm-modules/code-engine/ibm//modules/job"
189-
version = "4.6.10"
189+
version = "4.6.12"
190190
name = "${var.prefix}-job"
191191
image_reference = local.output_image
192192
image_secret = module.code_engine_secret.name

examples/fscloud/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ data "ibm_iam_account_settings" "iam_account_settings" {
2020

2121
module "cbr_zone_schematics" {
2222
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
23-
version = "1.33.8"
23+
version = "1.34.0"
2424
name = "${var.prefix}-schematics-zone"
2525
zone_description = "CBR Network zone containing Schematics"
2626
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
@@ -39,7 +39,7 @@ module "cbr_zone_schematics" {
3939

4040
module "event_notification" {
4141
source = "terraform-ibm-modules/event-notifications/ibm"
42-
version = "2.10.12"
42+
version = "2.10.14"
4343
resource_group_id = module.resource_group.resource_group_id
4444
name = "${var.prefix}-en"
4545
tags = var.resource_tags

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ locals {
163163
module "cbr_rule" {
164164
count = length(var.cbr_rules) > 0 ? length(var.cbr_rules) : 0
165165
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
166-
version = "1.33.8"
166+
version = "1.34.0"
167167
rule_description = var.cbr_rules[count.index].description
168168
enforcement_mode = var.cbr_rules[count.index].enforcement_mode
169169
rule_contexts = var.cbr_rules[count.index].rule_contexts

modules/secrets/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ data "ibm_sm_secret_groups" "existing_secret_groups" {
2525
module "secret_groups" {
2626
for_each = { for obj in local.secret_groups : obj.secret_group_name => obj }
2727
source = "terraform-ibm-modules/secrets-manager-secret-group/ibm"
28-
version = "1.3.16"
28+
version = "1.3.18"
2929
region = var.existing_sm_instance_region
3030
secrets_manager_guid = var.existing_sm_instance_guid
3131
secret_group_name = each.value.secret_group_name

solutions/fully-configurable/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ module "kms" {
130130
}
131131
count = var.existing_secrets_manager_crn == null && var.kms_encryption_enabled && var.existing_secrets_manager_kms_key_crn == null ? 1 : 0 # no need to create any KMS resources if passing an existing key
132132
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
133-
version = "5.4.10"
133+
version = "5.5.0"
134134
create_key_protect_instance = false
135135
region = local.kms_region
136136
existing_kms_instance_crn = var.existing_kms_instance_crn

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
required_providers {
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = "1.84.3"
7+
version = "1.85.0"
88
}
99
time = {
1010
source = "hashicorp/time"

tests/existing-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 "event_notifications" {
1818
source = "terraform-ibm-modules/event-notifications/ibm"
19-
version = "2.10.12"
19+
version = "2.10.14"
2020
resource_group_id = module.resource_group.resource_group_id
2121
name = "${var.prefix}-en"
2222
tags = var.resource_tags
@@ -31,7 +31,7 @@ module "event_notifications" {
3131

3232
module "key_protect" {
3333
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
34-
version = "5.4.10"
34+
version = "5.5.0"
3535
key_protect_instance_name = "${var.prefix}-key-protect"
3636
resource_group_id = module.resource_group.resource_group_id
3737
region = var.region

tests/go.mod

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ go 1.24.2
55
toolchain go1.25.4
66

77
require (
8-
github.com/IBM/go-sdk-core/v5 v5.21.0
9-
github.com/gruntwork-io/terratest v0.52.0
8+
github.com/IBM/go-sdk-core/v5 v5.21.2
9+
github.com/gruntwork-io/terratest v0.53.0
1010
github.com/stretchr/testify v1.11.1
11-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.20
11+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.31
1212
)
1313

1414
require (
@@ -24,33 +24,32 @@ require (
2424
github.com/ProtonMail/go-crypto v1.1.6 // indirect
2525
github.com/agext/levenshtein v1.2.3 // indirect
2626
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
27-
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
2827
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
2928
github.com/cloudflare/circl v1.6.1 // indirect
3029
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
3130
github.com/davecgh/go-spew v1.1.1 // indirect
3231
github.com/emirpasic/gods v1.18.1 // indirect
3332
github.com/fsnotify/fsnotify v1.8.0 // indirect
34-
github.com/gabriel-vasile/mimetype v1.4.9 // indirect
33+
github.com/gabriel-vasile/mimetype v1.4.11 // indirect
3534
github.com/ghodss/yaml v1.0.0 // indirect
3635
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
3736
github.com/go-git/go-billy/v5 v5.6.2 // indirect
3837
github.com/go-git/go-git/v5 v5.16.3 // indirect
3938
github.com/go-logr/logr v1.4.2 // indirect
4039
github.com/go-logr/stdr v1.2.2 // indirect
4140
github.com/go-openapi/analysis v0.23.0 // indirect
42-
github.com/go-openapi/errors v0.22.3 // indirect
41+
github.com/go-openapi/errors v0.22.4 // indirect
4342
github.com/go-openapi/jsonpointer v0.21.1 // indirect
4443
github.com/go-openapi/jsonreference v0.21.0 // indirect
4544
github.com/go-openapi/loads v0.22.0 // indirect
4645
github.com/go-openapi/runtime v0.28.0 // indirect
4746
github.com/go-openapi/spec v0.21.0 // indirect
48-
github.com/go-openapi/strfmt v0.24.0 // indirect
47+
github.com/go-openapi/strfmt v0.25.0 // indirect
4948
github.com/go-openapi/swag v0.23.1 // indirect
5049
github.com/go-openapi/validate v0.24.0 // indirect
5150
github.com/go-playground/locales v0.14.1 // indirect
5251
github.com/go-playground/universal-translator v0.18.1 // indirect
53-
github.com/go-playground/validator/v10 v10.26.0 // indirect
52+
github.com/go-playground/validator/v10 v10.28.0 // indirect
5453
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
5554
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
5655
github.com/google/go-cmp v0.7.0 // indirect
@@ -59,7 +58,7 @@ require (
5958
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
6059
github.com/hashicorp/go-getter/v2 v2.2.3 // indirect
6160
github.com/hashicorp/go-multierror v1.1.1 // indirect
62-
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
61+
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
6362
github.com/hashicorp/go-safetemp v1.0.0 // indirect
6463
github.com/hashicorp/go-version v1.7.0 // indirect
6564
github.com/hashicorp/hcl/v2 v2.22.0 // indirect
@@ -87,19 +86,19 @@ require (
8786
github.com/ulikunitz/xz v0.5.11 // indirect
8887
github.com/xanzy/ssh-agent v0.3.3 // indirect
8988
github.com/zclconf/go-cty v1.16.4 // indirect
90-
go.mongodb.org/mongo-driver v1.17.4 // indirect
89+
go.mongodb.org/mongo-driver v1.17.6 // indirect
9190
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
9291
go.opentelemetry.io/otel v1.35.0 // indirect
9392
go.opentelemetry.io/otel/metric v1.35.0 // indirect
9493
go.opentelemetry.io/otel/trace v1.35.0 // indirect
95-
go.yaml.in/yaml/v2 v2.4.2 // indirect
96-
golang.org/x/crypto v0.43.0 // indirect
97-
golang.org/x/mod v0.28.0 // indirect
98-
golang.org/x/net v0.45.0 // indirect
99-
golang.org/x/sync v0.17.0 // indirect
100-
golang.org/x/sys v0.37.0 // indirect
101-
golang.org/x/text v0.30.0 // indirect
102-
golang.org/x/tools v0.37.0 // indirect
94+
go.yaml.in/yaml/v2 v2.4.3 // indirect
95+
golang.org/x/crypto v0.45.0 // indirect
96+
golang.org/x/mod v0.29.0 // indirect
97+
golang.org/x/net v0.47.0 // indirect
98+
golang.org/x/sync v0.18.0 // indirect
99+
golang.org/x/sys v0.38.0 // indirect
100+
golang.org/x/text v0.31.0 // indirect
101+
golang.org/x/tools v0.38.0 // indirect
103102
gopkg.in/warnings.v0 v0.1.2 // indirect
104103
gopkg.in/yaml.v2 v2.4.0 // indirect
105104
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)