Skip to content

Commit be6879a

Browse files
fix(deps): update dependencies (#40)
* fix(deps): update dependencies * Update ibm_catalog.json --------- Co-authored-by: Conall Ó Cofaigh <ocofaigh@ie.ibm.com>
1 parent fe85b30 commit be6879a

File tree

11 files changed

+54
-44
lines changed

11 files changed

+54
-44
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/common-terraform-module-ci-v2.yml@v1.24.0
11+
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-terraform-module-ci-v2.yml@v1.24.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.24.0
11+
uses: terraform-ibm-modules/common-pipeline-assets/.github/workflows/common-release.yml@v1.24.1
1212
secrets: inherit

examples/offering-catalog/main.tf

Lines changed: 1 addition & 1 deletion
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.7"
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

examples/vpe-catalog/main.tf

Lines changed: 1 addition & 1 deletion
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.7"
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

ibm_catalog.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
{
4444
"label": "Catalog",
4545
"name": "catalog",
46+
"short_description": "Ideal for users looking to manage IBM Cloud private catalogs.",
4647
"install_type": "fullstack",
4748
"working_directory": "solutions/catalog",
4849
"configuration": [
@@ -70,7 +71,17 @@
7071
}
7172
},
7273
{
73-
"key": "target_accounts"
74+
"key": "target_accounts",
75+
"custom_config": {
76+
"type": "code_editor",
77+
"grouping": "deployment",
78+
"original_grouping": "deployment",
79+
"config_constraints": {
80+
"supportedLanguages": [
81+
"hcl"
82+
]
83+
}
84+
}
7485
},
7586
{
7687
"key": "short_description"
@@ -127,6 +138,7 @@
127138
{
128139
"label": "VPE Object",
129140
"name": "vpe-object",
141+
"short_description": "Ideal for users looking to manage IBM Cloud VPE catalog objects",
130142
"install_type": "fullstack",
131143
"working_directory": "solutions/vpe-object",
132144
"configuration": [

solutions/catalog/main.tf

Lines changed: 1 addition & 1 deletion
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.7"
88
existing_resource_group_name = var.existing_resource_group_name
99
}
1010

solutions/catalog/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
}
99
}

solutions/vpe-object/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
}
99
}

tests/go.mod

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
module github.com/terraform-ibm-modules/terraform-ibm-catalog-management
22

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

75
require (
86
github.com/gruntwork-io/terratest v0.54.0
97
github.com/stretchr/testify v1.11.1
10-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.34
8+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.64.1
119
)
1210

1311
require (
1412
dario.cat/mergo v1.0.0 // indirect
1513
github.com/IBM-Cloud/bluemix-go v0.0.0-20240719075425-078fcb3a55be // indirect
16-
github.com/IBM-Cloud/power-go-client v1.14.3 // indirect
14+
github.com/IBM-Cloud/power-go-client v1.14.4 // indirect
1715
github.com/IBM/cloud-databases-go-sdk v0.8.1 // indirect
1816
github.com/IBM/go-sdk-core/v5 v5.21.2 // indirect
19-
github.com/IBM/platform-services-go-sdk v0.90.4 // indirect
17+
github.com/IBM/platform-services-go-sdk v0.91.0 // indirect
2018
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
@@ -37,7 +35,7 @@ require (
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.6 // 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
@@ -90,13 +88,13 @@ require (
9088
go.opentelemetry.io/otel/metric v1.35.0 // indirect
9189
go.opentelemetry.io/otel/trace v1.35.0 // indirect
9290
go.yaml.in/yaml/v2 v2.4.3 // indirect
93-
golang.org/x/crypto v0.45.0 // indirect
94-
golang.org/x/mod v0.29.0 // indirect
91+
golang.org/x/crypto v0.46.0 // indirect
92+
golang.org/x/mod v0.30.0 // indirect
9593
golang.org/x/net v0.47.0 // indirect
96-
golang.org/x/sync v0.18.0 // indirect
97-
golang.org/x/sys v0.38.0 // indirect
98-
golang.org/x/text v0.31.0 // indirect
99-
golang.org/x/tools v0.38.0 // indirect
94+
golang.org/x/sync v0.19.0 // indirect
95+
golang.org/x/sys v0.39.0 // indirect
96+
golang.org/x/text v0.32.0 // indirect
97+
golang.org/x/tools v0.39.0 // indirect
10098
gopkg.in/warnings.v0 v0.1.2 // indirect
10199
gopkg.in/yaml.v2 v2.4.0 // indirect
102100
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)