Skip to content

Commit 114f662

Browse files
fix(deps): update dependencies
1 parent 00d6004 commit 114f662

File tree

6 files changed

+10
-12
lines changed

6 files changed

+10
-12
lines changed

examples/complete/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ locals {
5353

5454
module "key_protect_all_inclusive" {
5555
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
56-
version = "5.5.0"
56+
version = "5.5.3"
5757
resource_group_id = module.resource_group.resource_group_id
5858
# Only us-south, us-east and eu-de backup encryption keys are supported. See https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-key-protect&interface=ui#key-byok for details.
5959
# Note: Database instance and Key Protect must be created on the same region.
@@ -137,7 +137,7 @@ module "icd_mongodb" {
137137
module "secrets_manager" {
138138
count = var.existing_secrets_manager_instance_guid == null ? 1 : 0
139139
source = "terraform-ibm-modules/secrets-manager/ibm"
140-
version = "2.11.9"
140+
version = "2.12.0"
141141
resource_group_id = module.resource_group.resource_group_id
142142
region = var.region
143143
secrets_manager_name = "${var.prefix}-secrets-manager"

solutions/fully-configurable/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module "kms" {
3232
}
3333
count = local.create_new_kms_key ? 1 : 0
3434
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
35-
version = "5.5.0"
35+
version = "5.5.3"
3636
create_key_protect_instance = false
3737
region = local.kms_region
3838
existing_kms_instance_crn = var.existing_kms_instance_crn
@@ -399,7 +399,7 @@ locals {
399399
module "secrets_manager_service_credentials" {
400400
count = length(local.service_credential_secrets) > 0 ? 1 : 0
401401
source = "terraform-ibm-modules/secrets-manager/ibm//modules/secrets"
402-
version = "2.11.9"
402+
version = "2.12.0"
403403
# converted into implicit dependency and removed explicit depends_on time_sleep.wait_for_mongodb_authorization_policy for this module because of issue https://github.com/terraform-ibm-modules/terraform-ibm-icd-redis/issues/608
404404
existing_sm_instance_guid = local.create_secrets_manager_auth_policy > 0 ? time_sleep.wait_for_mongodb_authorization_policy[0].triggers["secrets_manager_guid"] : local.existing_secrets_manager_instance_guid
405405
existing_sm_instance_region = local.create_secrets_manager_auth_policy > 0 ? time_sleep.wait_for_mongodb_authorization_policy[0].triggers["secrets_manager_region"] : local.existing_secrets_manager_instance_region

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

tests/go.mod

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
module github.com/terraform-ibm-modules/terraform-ibm-icd-mongodb
22

3-
go 1.24.0
4-
5-
toolchain go1.25.4
3+
go 1.25.5
64

75
require (
86
github.com/google/uuid v1.6.0
97
github.com/gruntwork-io/terratest v0.54.0
108
github.com/stretchr/testify v1.11.1
11-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.34
9+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.61.2
1210
)
1311

1412
require (

tests/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,8 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
297297
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
298298
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
299299
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
300-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.34 h1:eED28nDc2If2KjsEi5VBAUt0at+FxVJw/lUcwzeW8Ck=
301-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.34/go.mod h1:VCaRJKjjwIqWMdXqMwvC/9WCwWe8lBTRZrkYrQbcNUU=
300+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.61.2 h1:GEDNJCyDS7mRepOTSxDpmJKVmiRUSFy3u9biQ4ZYxzc=
301+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.61.2/go.mod h1:VCaRJKjjwIqWMdXqMwvC/9WCwWe8lBTRZrkYrQbcNUU=
302302
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
303303
github.com/tmccombs/hcl2json v0.6.4 h1:/FWnzS9JCuyZ4MNwrG4vMrFrzRgsWEOVi+1AyYUVLGw=
304304
github.com/tmccombs/hcl2json v0.6.4/go.mod h1:+ppKlIW3H5nsAsZddXPy2iMyvld3SHxyjswOZhavRDk=

0 commit comments

Comments
 (0)