Skip to content

Commit a1231bd

Browse files
fix(deps): update dependencies (#1125)
1 parent 8302785 commit a1231bd

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

examples/landing_zone/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module "resource_group" {
1717
module "cos_bucket" {
1818
count = var.enable_vpc_flow_logs ? 1 : 0
1919
source = "terraform-ibm-modules/cos/ibm"
20-
version = "10.9.7"
20+
version = "10.9.9"
2121
resource_group_id = module.resource_group.resource_group_id
2222
region = var.region
2323
cross_region_location = null

solutions/fully-configurable/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ module "cos_buckets" {
7373
count = var.enable_vpc_flow_logs ? 1 : 0
7474
depends_on = [time_sleep.wait_for_cross_account_authorization_policy[0]]
7575
source = "terraform-ibm-modules/cos/ibm//modules/buckets"
76-
version = "10.9.7"
76+
version = "10.9.9"
7777
bucket_configs = local.bucket_config
7878
}
7979

@@ -163,7 +163,7 @@ module "kms" {
163163
}
164164
count = local.create_kms_key ? 1 : 0 # no need to create any KMS resources if not passing an existing KMS CRN or existing KMS key CRN is provided
165165
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
166-
version = "5.5.25"
166+
version = "5.5.27"
167167
create_key_protect_instance = false
168168
region = local.kms_region
169169
existing_kms_instance_crn = var.existing_kms_instance_crn

solutions/quickstart/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module "resource_group" {
2020
module "cos" {
2121
count = var.enable_vpc_flow_logs ? 1 : 0
2222
source = "terraform-ibm-modules/cos/ibm"
23-
version = "10.9.7"
23+
version = "10.9.9"
2424
resource_group_id = module.resource_group.resource_group_id
2525
region = var.region
2626
cos_instance_name = "${var.prefix}-cos"

tests/existing-resources/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ resource "ibm_is_subnet" "testacc_subnet" {
3333
module "postgresql_db" {
3434
count = var.create_db ? 1 : 0
3535
source = "terraform-ibm-modules/icd-postgresql/ibm"
36-
version = "4.7.0"
36+
version = "4.7.2"
3737
resource_group_id = module.resource_group.resource_group_id
3838
name = "${var.prefix}-vpe-pg"
3939
region = var.region

tests/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ require (
66
github.com/IBM/go-sdk-core/v5 v5.21.2
77
github.com/gruntwork-io/terratest v0.55.0
88
github.com/stretchr/testify v1.11.1
9-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.68.0
9+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.68.1
1010
)
1111

1212
require (
1313
dario.cat/mergo v1.0.0 // indirect
1414
github.com/IBM-Cloud/bluemix-go v0.0.0-20240719075425-078fcb3a55be // indirect
1515
github.com/IBM-Cloud/power-go-client v1.14.4 // indirect
1616
github.com/IBM/cloud-databases-go-sdk v0.8.1 // indirect
17-
github.com/IBM/platform-services-go-sdk v0.93.1 // indirect
17+
github.com/IBM/platform-services-go-sdk v0.94.0 // indirect
1818
github.com/IBM/project-go-sdk v0.4.0 // indirect
1919
github.com/IBM/schematics-go-sdk v0.4.0 // indirect
2020
github.com/IBM/vpc-go-sdk v1.0.2 // indirect

tests/go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ github.com/IBM/cloud-databases-go-sdk v0.8.1/go.mod h1:JYucI1PdwqbAd8XGdDAchxzxR
99
github.com/IBM/go-sdk-core/v5 v5.9.2/go.mod h1:YlOwV9LeuclmT/qi/LAK2AsobbAP42veV0j68/rlZsE=
1010
github.com/IBM/go-sdk-core/v5 v5.21.2 h1:mJ5QbLPOm4g5qhZiVB6wbSllfpeUExftGoyPek2hk4M=
1111
github.com/IBM/go-sdk-core/v5 v5.21.2/go.mod h1:ngpMgwkjur1VNUjqn11LPk3o5eCyOCRbcfg/0YAY7Hc=
12-
github.com/IBM/platform-services-go-sdk v0.93.1 h1:ue/gOYPSObDHff8fS/8mx5Q+eUGrVQ0ahjnTLwomyfk=
13-
github.com/IBM/platform-services-go-sdk v0.93.1/go.mod h1:KAnBhxKaYsu9It2aVXV6oCPEj78imvTs2qSG0ScZKpM=
12+
github.com/IBM/platform-services-go-sdk v0.94.0 h1:Uj4Gsin5jRb+QYZIHOSl6gzKHTD9JLHsKwfugXdyDYk=
13+
github.com/IBM/platform-services-go-sdk v0.94.0/go.mod h1:KAnBhxKaYsu9It2aVXV6oCPEj78imvTs2qSG0ScZKpM=
1414
github.com/IBM/project-go-sdk v0.4.0 h1:72pEtVHJn434+MYRawER7Hk/kblapdfotoLBBhjv/jo=
1515
github.com/IBM/project-go-sdk v0.4.0/go.mod h1:FOJM9ihQV3EEAY6YigcWiTNfVCThtdY8bLC/nhQHFvo=
1616
github.com/IBM/schematics-go-sdk v0.4.0 h1:x01f/tPquYJYLQzJLGuxWfCbV/EdSMXRikOceNy/JLM=
@@ -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.68.0 h1:4eesvxSmwllaxYrG7sbr54AL267znM/oOPKiPtGr1l4=
301-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.68.0/go.mod h1:8HqpvEsxvfkL1LXqLyxPfV6n12M0b6Foj9DsNRy7mi0=
300+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.68.1 h1:FYS4Bxw6cXyKuCz4+IyN8GzaONJtlzHfOxty8DZsAbI=
301+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.68.1/go.mod h1:1v2TpsR28LMR9EMNhGKh+8fnToAUbJ+2pqe7ihoJTeA=
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)