Skip to content

Commit 08cc8a7

Browse files
fix(deps): update dependencies (#134)
1 parent 6129cc2 commit 08cc8a7

File tree

9 files changed

+31
-31
lines changed

9 files changed

+31
-31
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ For more information about the Enterprise Application Service product you can re
3030
## Overview
3131
* [terraform-ibm-enterprise-app-java](#terraform-ibm-enterprise-app-java)
3232
* [Examples](./examples)
33-
* [Basic example](./examples/basic)
34-
* [Build, deploy and run complete example](./examples/bdr_complete)
35-
* [Deploy and run complete example](./examples/dr_complete)
33+
* <div style="display: inline-block;"><a href="./examples/basic">Basic example</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=eaj-basic-example&repository=github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java/tree/main/examples/basic" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
34+
* <div style="display: inline-block;"><a href="./examples/bdr_complete">Build, deploy and run complete example</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=eaj-bdr_complete-example&repository=github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java/tree/main/examples/bdr_complete" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
35+
* <div style="display: inline-block;"><a href="./examples/dr_complete">Deploy and run complete example</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=eaj-dr_complete-example&repository=github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java/tree/main/examples/dr_complete" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
3636
* [Contributing](#contributing)
3737
<!-- END OVERVIEW HOOK -->
3838

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.3.0"
7+
version = "1.4.0"
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.2.0"
20+
version = "1.3.0"
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.3.0"
11+
version = "1.4.0"
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.2.0"
25+
version = "1.3.0"
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.2.0"
49+
version = "1.3.0"
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.3.0"
11+
version = "1.4.0"
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.2.0"
25+
version = "1.3.0"
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.2.0"
49+
version = "1.3.0"
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.3.0"
12+
version = "1.4.0"
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.2.0"
27+
version = "1.3.0"
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.2.0"
55+
version = "1.3.0"
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.2.0"
125+
version = "1.3.0"
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.2.0"
227+
version = "1.3.0"
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.83.1"
6+
version = "1.85.0"
77
}
88
time = {
99
source = "hashicorp/time"

tests/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ module github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java
22

33
go 1.24.0
44

5-
toolchain go1.25.1
5+
toolchain go1.25.4
66

77
require (
88
github.com/IBM/go-sdk-core v1.1.0
99
github.com/stretchr/testify v1.11.1
10-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.17
10+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.21
1111
gopkg.in/yaml.v3 v3.0.1
1212
)
1313

@@ -17,7 +17,7 @@ require (
1717
github.com/IBM-Cloud/power-go-client v1.13.0 // indirect
1818
github.com/IBM/cloud-databases-go-sdk v0.8.1 // indirect
1919
github.com/IBM/go-sdk-core/v5 v5.21.0 // indirect
20-
github.com/IBM/platform-services-go-sdk v0.89.0 // indirect
20+
github.com/IBM/platform-services-go-sdk v0.90.0 // indirect
2121
github.com/IBM/project-go-sdk v0.3.9 // indirect
2222
github.com/IBM/schematics-go-sdk v0.4.0 // indirect
2323
github.com/IBM/vpc-go-sdk v1.0.2 // indirect
@@ -56,7 +56,7 @@ require (
5656
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
5757
github.com/google/go-cmp v0.7.0 // indirect
5858
github.com/google/uuid v1.6.0 // indirect
59-
github.com/gruntwork-io/terratest v0.51.0 // indirect
59+
github.com/gruntwork-io/terratest v0.52.0 // indirect
6060
github.com/hashicorp/errwrap v1.1.0 // indirect
6161
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
6262
github.com/hashicorp/go-getter/v2 v2.2.3 // indirect
@@ -97,7 +97,7 @@ require (
9797
golang.org/x/crypto v0.43.0 // indirect
9898
golang.org/x/mod v0.28.0 // indirect
9999
golang.org/x/net v0.45.0 // indirect
100-
golang.org/x/sync v0.17.0 // indirect
100+
golang.org/x/sync v0.18.0 // indirect
101101
golang.org/x/sys v0.37.0 // indirect
102102
golang.org/x/text v0.30.0 // indirect
103103
golang.org/x/tools v0.37.0 // indirect

tests/go.sum

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ github.com/IBM/go-sdk-core v1.1.0/go.mod h1:2pcx9YWsIsZ3I7kH+1amiAkXvLTZtAq9kbxs
1111
github.com/IBM/go-sdk-core/v5 v5.9.2/go.mod h1:YlOwV9LeuclmT/qi/LAK2AsobbAP42veV0j68/rlZsE=
1212
github.com/IBM/go-sdk-core/v5 v5.21.0 h1:DUnYhvC4SoC8T84rx5omnhY3+xcQg/Whyoa3mDPIMkk=
1313
github.com/IBM/go-sdk-core/v5 v5.21.0/go.mod h1:Q3BYO6iDA2zweQPDGbNTtqft5tDcEpm6RTuqMlPcvbw=
14-
github.com/IBM/platform-services-go-sdk v0.89.0 h1:fIvKR1bQchPoMUXQf69gaRKak/giVAkRDISiAX8TlE8=
15-
github.com/IBM/platform-services-go-sdk v0.89.0/go.mod h1:aGD045m6I8pfcB77wft8w2cHqWOJjcM3YSSV55BX0Js=
14+
github.com/IBM/platform-services-go-sdk v0.90.0 h1:hsUkgZZBGYK+szFb0tF9Q7uy1VjMY+VlYAPgPwFPMrg=
15+
github.com/IBM/platform-services-go-sdk v0.90.0/go.mod h1:aGD045m6I8pfcB77wft8w2cHqWOJjcM3YSSV55BX0Js=
1616
github.com/IBM/project-go-sdk v0.3.9 h1:D/UfMMn+vMQyvYf9EfocV6HrD3HcVpeIVoUSjNKuROo=
1717
github.com/IBM/project-go-sdk v0.3.9/go.mod h1:FOJM9ihQV3EEAY6YigcWiTNfVCThtdY8bLC/nhQHFvo=
1818
github.com/IBM/schematics-go-sdk v0.4.0 h1:x01f/tPquYJYLQzJLGuxWfCbV/EdSMXRikOceNy/JLM=
@@ -155,8 +155,8 @@ github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+
155155
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
156156
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
157157
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
158-
github.com/gruntwork-io/terratest v0.51.0 h1:RCXlCwWlHqhUoxgF6n3hvywvbvrsTXqoqt34BrnLekw=
159-
github.com/gruntwork-io/terratest v0.51.0/go.mod h1:evZHXb8VWDgv5O5zEEwfkwMhkx9I53QR/RB11cISrpg=
158+
github.com/gruntwork-io/terratest v0.52.0 h1:7+I3FqEImowIajZ9Qyo5ngr7n2AUINJko6x+KzlWNjU=
159+
github.com/gruntwork-io/terratest v0.52.0/go.mod h1:y2Evi+Ac04QpzF3mbRPqrBjipDN7gjqlw6+OZoy2vX4=
160160
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
161161
github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
162162
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
@@ -303,8 +303,8 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
303303
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
304304
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
305305
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
306-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.17 h1:unGRxvM9OJBTsfDQg/AZCYOeJZ5TqrCsPphjWJ2wI94=
307-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.17/go.mod h1:g0kmBhFk6pVoTmse42tMNCSNktiOYJHAda/pAzOIxco=
306+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.21 h1:u+m413fTNcv8pM8q3xZUZCnNPh6/Ax9TtGEPC9XCswU=
307+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.21/go.mod h1:uBNM9I6XCkIJXhWPwPIyKWOWTxWMJvR34XPoCpbcpos=
308308
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
309309
github.com/tmccombs/hcl2json v0.6.4 h1:/FWnzS9JCuyZ4MNwrG4vMrFrzRgsWEOVi+1AyYUVLGw=
310310
github.com/tmccombs/hcl2json v0.6.4/go.mod h1:+ppKlIW3H5nsAsZddXPy2iMyvld3SHxyjswOZhavRDk=
@@ -406,8 +406,8 @@ golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
406406
golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
407407
golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y=
408408
golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
409-
golang.org/x/sync v0.17.0 h1:l60nONMj9l5drqw6jlhIELNv9I0A4OFgRsG9k2oT9Ug=
410-
golang.org/x/sync v0.17.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI=
409+
golang.org/x/sync v0.18.0 h1:kr88TuHDroi+UVf+0hZnirlk8o8T+4MrK6mr60WkH/I=
410+
golang.org/x/sync v0.18.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI=
411411
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
412412
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
413413
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

0 commit comments

Comments
 (0)