Skip to content

Commit a986117

Browse files
fix(deps): update dependencies (#321)
1 parent e925af1 commit a986117

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ To attach access management tags to resources in this module, you need the follo
9393
| Name | Source | Version |
9494
|------|--------|---------|
9595
| <a name="module_backup_key_crn_parser"></a> [backup\_key\_crn\_parser](#module\_backup\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.2.0 |
96-
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.32.7 |
96+
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.33.0 |
9797
| <a name="module_kms_key_crn_parser"></a> [kms\_key\_crn\_parser](#module\_kms\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.2.0 |
9898

9999
### Resources

examples/complete/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ data "ibm_iam_account_settings" "iam_account_settings" {
5858

5959
module "vpc" {
6060
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
61-
version = "7.25.15"
61+
version = "8.0.0"
6262
resource_group_id = module.resource_group.resource_group_id
6363
region = var.region
6464
prefix = var.prefix
@@ -87,7 +87,7 @@ resource "time_sleep" "wait_30_seconds" {
8787

8888
module "cbr_zone" {
8989
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
90-
version = "1.32.7"
90+
version = "1.33.0"
9191
name = "${var.prefix}-VPC-network-zone"
9292
zone_description = "CBR Network zone representing VPC"
9393
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
@@ -160,7 +160,7 @@ resource "time_sleep" "wait_120_seconds" {
160160

161161
module "vpe" {
162162
source = "terraform-ibm-modules/vpe-gateway/ibm"
163-
version = "4.7.4"
163+
version = "4.7.5"
164164
prefix = "vpe-to-my"
165165
cloud_service_by_crn = [
166166
{

examples/fscloud/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ resource "ibm_is_subnet" "testacc_subnet" {
3939
##############################################################################
4040
module "cbr_zone" {
4141
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
42-
version = "1.32.7"
42+
version = "1.33.0"
4343
name = "${var.prefix}-VPC-network-zone"
4444
zone_description = "CBR Network zone representing VPC"
4545
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ resource "ibm_resource_tag" "access_tag" {
326326
module "cbr_rule" {
327327
count = length(var.cbr_rules) > 0 ? length(var.cbr_rules) : 0
328328
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
329-
version = "1.32.7"
329+
version = "1.33.0"
330330
rule_description = var.cbr_rules[count.index].description
331331
enforcement_mode = var.cbr_rules[count.index].enforcement_mode
332332
rule_contexts = var.cbr_rules[count.index].rule_contexts

tests/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ module github.com/terraform-ibm-modules/terraform-ibm-icd-mysql
22

33
go 1.24.0
44

5-
toolchain go1.24.6
5+
toolchain go1.25.0
66

77
require (
88
github.com/google/uuid v1.6.0
99
github.com/gruntwork-io/terratest v0.50.0
1010
github.com/stretchr/testify v1.10.0
11-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.9
11+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.11
1212
)
1313

1414
require (
@@ -39,7 +39,7 @@ require (
3939
github.com/go-logr/logr v1.4.3 // indirect
4040
github.com/go-logr/stdr v1.2.2 // indirect
4141
github.com/go-openapi/analysis v0.23.0 // indirect
42-
github.com/go-openapi/errors v0.22.1 // indirect
42+
github.com/go-openapi/errors v0.22.2 // indirect
4343
github.com/go-openapi/jsonpointer v0.21.1 // indirect
4444
github.com/go-openapi/jsonreference v0.21.0 // indirect
4545
github.com/go-openapi/loads v0.22.0 // indirect
@@ -61,7 +61,7 @@ require (
6161
github.com/hashicorp/go-safetemp v1.0.0 // indirect
6262
github.com/hashicorp/go-version v1.7.0 // indirect
6363
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
64-
github.com/hashicorp/terraform-json v0.25.0 // indirect
64+
github.com/hashicorp/terraform-json v0.26.0 // indirect
6565
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
6666
github.com/jinzhu/copier v0.4.0 // indirect
6767
github.com/josharian/intern v1.0.0 // indirect

tests/go.sum

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre
7777
github.com/go-openapi/analysis v0.23.0 h1:aGday7OWupfMs+LbmLZG4k0MYXIANxcuBTYUC03zFCU=
7878
github.com/go-openapi/analysis v0.23.0/go.mod h1:9mz9ZWaSlV8TvjQHLl2mUW2PbZtemkE8yA5v22ohupo=
7979
github.com/go-openapi/errors v0.19.8/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M=
80-
github.com/go-openapi/errors v0.22.1 h1:kslMRRnK7NCb/CvR1q1VWuEQCEIsBGn5GgKD9e+HYhU=
81-
github.com/go-openapi/errors v0.22.1/go.mod h1:+n/5UdIqdVnLIJ6Q9Se8HNGUXYaY6CN8ImWzfi/Gzp0=
80+
github.com/go-openapi/errors v0.22.2 h1:rdxhzcBUazEcGccKqbY1Y7NS8FDcMyIRr0934jrYnZg=
81+
github.com/go-openapi/errors v0.22.2/go.mod h1:+n/5UdIqdVnLIJ6Q9Se8HNGUXYaY6CN8ImWzfi/Gzp0=
8282
github.com/go-openapi/jsonpointer v0.21.1 h1:whnzv/pNXtK2FbX/W9yJfRmE2gsmkfahjMKB0fZvcic=
8383
github.com/go-openapi/jsonpointer v0.21.1/go.mod h1:50I1STOfbY1ycR8jGz8DaMeLCdXiI6aDteEdRNNzpdk=
8484
github.com/go-openapi/jsonreference v0.21.0 h1:Rs+Y7hSXT83Jacb7kFyjn4ijOuVGSvOdF2+tg1TRrwQ=
@@ -152,8 +152,8 @@ github.com/hashicorp/go-version v1.7.0 h1:5tqGy27NaOTB8yJKUZELlFAS/LTKJkrmONwQKe
152152
github.com/hashicorp/go-version v1.7.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
153153
github.com/hashicorp/hcl/v2 v2.24.0 h1:2QJdZ454DSsYGoaE6QheQZjtKZSUs9Nh2izTWiwQxvE=
154154
github.com/hashicorp/hcl/v2 v2.24.0/go.mod h1:oGoO1FIQYfn/AgyOhlg9qLC6/nOJPX3qGbkZpYAcqfM=
155-
github.com/hashicorp/terraform-json v0.25.0 h1:rmNqc/CIfcWawGiwXmRuiXJKEiJu1ntGoxseG1hLhoQ=
156-
github.com/hashicorp/terraform-json v0.25.0/go.mod h1:sMKS8fiRDX4rVlR6EJUMudg1WcanxCMoWwTLkgZP/vc=
155+
github.com/hashicorp/terraform-json v0.26.0 h1:+BnJavhRH+oyNWPnfzrfQwVWCZBFMvjdiH2Vi38Udz4=
156+
github.com/hashicorp/terraform-json v0.26.0/go.mod h1:eyWCeC3nrZamyrKLFnrvwpc3LQPIJsx8hWHQ/nu2/v4=
157157
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
158158
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A=
159159
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo=
@@ -235,8 +235,8 @@ github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
235235
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
236236
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
237237
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
238-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.9 h1:6Qe8nXVwPQTxeMIJVxXDsKwydZffkqxqzxH3yvzq1g0=
239-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.9/go.mod h1:vj3rYECXYNHKpBbGGnBuRHc+ED8Y7VIMpna32AAw7Uk=
238+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.11 h1:f8qp4xvv2ySGSadmd0xJw/3r5equ9eOLKj2J0Ux9CyE=
239+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.11/go.mod h1:2uu21nGEK+6saiBO6MVJNystf2Wm0BUIyiQmxTLM72U=
240240
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
241241
github.com/tmccombs/hcl2json v0.6.7 h1:RYKTs4kd/gzRsEiv7J3M2WQ7TYRYZVc+0H0pZdERkxA=
242242
github.com/tmccombs/hcl2json v0.6.7/go.mod h1:lJgBOOGDpbhjvdG2dLaWsqB4KBzul2HytfDTS3H465o=

0 commit comments

Comments
 (0)