Skip to content

Commit 00bb59e

Browse files
fix(deps): update dependencies
1 parent ed3b5e1 commit 00bb59e

File tree

10 files changed

+59
-61
lines changed

10 files changed

+59
-61
lines changed

.github/workflows/ci.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-ci-pipeline:
11-
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/[email protected].0
11+
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/[email protected].1
1212
secrets: inherit

.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.1
1212
secrets: inherit

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.4.0"
7+
version = "1.4.6"
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
@@ -17,7 +17,7 @@ module "resource_group" {
1717
# parsing secret crn to collect the secrets manager ID, the region and the secret ID
1818
module "crn_parser_subid" {
1919
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
20-
version = "1.3.0"
20+
version = "1.3.5"
2121
crn = var.subscription_id_secret_crn
2222
}
2323

examples/bdr_complete/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ locals {
88

99
module "resource_group" {
1010
source = "terraform-ibm-modules/resource-group/ibm"
11-
version = "1.4.0"
11+
version = "1.4.6"
1212
# if an existing resource group is not set (null) create a new one using prefix
1313
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
1414
existing_resource_group_name = var.resource_group
@@ -22,7 +22,7 @@ module "resource_group" {
2222
module "crn_parser_token" {
2323
count = var.repos_git_token_secret_crn != null ? 1 : 0
2424
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
25-
version = "1.3.0"
25+
version = "1.3.5"
2626
crn = var.repos_git_token_secret_crn
2727
}
2828

@@ -46,7 +46,7 @@ locals {
4646
# parsing secret crn to collect the secrets manager ID, the region and the secret ID
4747
module "crn_parser_subid" {
4848
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
49-
version = "1.3.0"
49+
version = "1.3.5"
5050
crn = var.subscription_id_secret_crn
5151
}
5252

examples/dr_complete/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ locals {
88

99
module "resource_group" {
1010
source = "terraform-ibm-modules/resource-group/ibm"
11-
version = "1.4.0"
11+
version = "1.4.6"
1212
# if an existing resource group is not set (null) create a new one using prefix
1313
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
1414
existing_resource_group_name = var.resource_group
@@ -22,7 +22,7 @@ module "resource_group" {
2222
module "crn_parser_token" {
2323
count = var.repos_git_token_secret_crn != null ? 1 : 0
2424
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
25-
version = "1.3.0"
25+
version = "1.3.5"
2626
crn = var.repos_git_token_secret_crn
2727
}
2828

@@ -46,7 +46,7 @@ locals {
4646
# parsing secret crn to collect the secrets manager ID, the region and the secret ID
4747
module "crn_parser_subid" {
4848
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
49-
version = "1.3.0"
49+
version = "1.3.5"
5050
crn = var.subscription_id_secret_crn
5151
}
5252

solutions/fully-configurable/main.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ locals {
99

1010
module "resource_group" {
1111
source = "terraform-ibm-modules/resource-group/ibm"
12-
version = "1.4.0"
12+
version = "1.4.6"
1313
existing_resource_group_name = var.existing_resource_group_name
1414
}
1515

@@ -24,7 +24,7 @@ module "resource_group" {
2424
module "crn_parser_token" {
2525
count = var.repos_git_token_secret_crn != null ? 1 : 0
2626
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
27-
version = "1.3.0"
27+
version = "1.3.5"
2828
crn = var.repos_git_token_secret_crn
2929
}
3030

@@ -52,7 +52,7 @@ locals {
5252
module "crn_parser_subid" {
5353
count = var.subscription_id_secret_crn != null ? 1 : 0
5454
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
55-
version = "1.3.0"
55+
version = "1.3.5"
5656
crn = var.subscription_id_secret_crn
5757
}
5858

@@ -122,7 +122,7 @@ data "ibm_iam_account_settings" "provider_account" {}
122122
module "crn_parser_mq_capacity_instance_crn" {
123123
count = var.mq_capacity_s2s_policy_target_crn != null ? 1 : 0
124124
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
125-
version = "1.3.0"
125+
version = "1.3.5"
126126
crn = var.mq_capacity_s2s_policy_target_crn
127127
}
128128

@@ -224,7 +224,7 @@ resource "ibm_iam_authorization_policy" "mq_s2s_policy_account_scope" {
224224
module "crn_parser_db2_instance_crn" {
225225
count = var.db2_s2s_policy_target_crn != null ? 1 : 0
226226
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
227-
version = "1.3.0"
227+
version = "1.3.5"
228228
crn = var.db2_s2s_policy_target_crn
229229
}
230230

solutions/fully-configurable/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
ibm = {
55
source = "IBM-Cloud/ibm"
6-
version = "1.85.0"
6+
version = "1.86.1"
77
}
88
time = {
99
source = "hashicorp/time"

tests/go.mod

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
module github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java
22

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

75
require (
86
github.com/IBM/go-sdk-core/v5 v5.21.2
97
github.com/stretchr/testify v1.11.1
10-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.21
8+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.63.2
119
gopkg.in/yaml.v3 v3.0.1
1210
)
1311

1412
require (
1513
dario.cat/mergo v1.0.0 // indirect
1614
github.com/IBM-Cloud/bluemix-go v0.0.0-20240719075425-078fcb3a55be // indirect
17-
github.com/IBM-Cloud/power-go-client v1.13.0 // indirect
15+
github.com/IBM-Cloud/power-go-client v1.14.4 // indirect
1816
github.com/IBM/cloud-databases-go-sdk v0.8.1 // indirect
19-
github.com/IBM/platform-services-go-sdk v0.90.0 // indirect
20-
github.com/IBM/project-go-sdk v0.3.9 // indirect
17+
github.com/IBM/platform-services-go-sdk v0.91.0 // indirect
18+
github.com/IBM/project-go-sdk v0.4.0 // indirect
2119
github.com/IBM/schematics-go-sdk v0.4.0 // indirect
2220
github.com/IBM/vpc-go-sdk v1.0.2 // indirect
2321
github.com/Microsoft/go-winio v0.6.2 // indirect
@@ -33,11 +31,11 @@ require (
3331
github.com/ghodss/yaml v1.0.0 // indirect
3432
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
3533
github.com/go-git/go-billy/v5 v5.6.2 // indirect
36-
github.com/go-git/go-git/v5 v5.16.3 // indirect
34+
github.com/go-git/go-git/v5 v5.16.4 // indirect
3735
github.com/go-logr/logr v1.4.2 // indirect
3836
github.com/go-logr/stdr v1.2.2 // indirect
3937
github.com/go-openapi/analysis v0.23.0 // indirect
40-
github.com/go-openapi/errors v0.22.4 // indirect
38+
github.com/go-openapi/errors v0.22.5 // indirect
4139
github.com/go-openapi/jsonpointer v0.21.1 // indirect
4240
github.com/go-openapi/jsonreference v0.21.0 // indirect
4341
github.com/go-openapi/loads v0.22.0 // indirect
@@ -53,7 +51,7 @@ require (
5351
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
5452
github.com/google/go-cmp v0.7.0 // indirect
5553
github.com/google/uuid v1.6.0 // indirect
56-
github.com/gruntwork-io/terratest v0.52.0 // indirect
54+
github.com/gruntwork-io/terratest v0.54.0 // indirect
5755
github.com/hashicorp/errwrap v1.1.0 // indirect
5856
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
5957
github.com/hashicorp/go-getter/v2 v2.2.3 // indirect
@@ -91,13 +89,13 @@ require (
9189
go.opentelemetry.io/otel/metric v1.35.0 // indirect
9290
go.opentelemetry.io/otel/trace v1.35.0 // indirect
9391
go.yaml.in/yaml/v2 v2.4.3 // indirect
94-
golang.org/x/crypto v0.45.0 // indirect
95-
golang.org/x/mod v0.29.0 // indirect
92+
golang.org/x/crypto v0.46.0 // indirect
93+
golang.org/x/mod v0.30.0 // indirect
9694
golang.org/x/net v0.47.0 // indirect
97-
golang.org/x/sync v0.18.0 // indirect
98-
golang.org/x/sys v0.38.0 // indirect
99-
golang.org/x/text v0.31.0 // indirect
100-
golang.org/x/tools v0.38.0 // indirect
95+
golang.org/x/sync v0.19.0 // indirect
96+
golang.org/x/sys v0.39.0 // indirect
97+
golang.org/x/text v0.32.0 // indirect
98+
golang.org/x/tools v0.39.0 // indirect
10199
gopkg.in/warnings.v0 v0.1.2 // indirect
102100
gopkg.in/yaml.v2 v2.4.0 // indirect
103101
sigs.k8s.io/yaml v1.6.0 // indirect

0 commit comments

Comments
 (0)