Skip to content

Commit 9ff9ee2

Browse files
fix(deps): update dependencies
1 parent d0a464c commit 9ff9ee2

File tree

7 files changed

+63
-62
lines changed

7 files changed

+63
-62
lines changed

.secrets.baseline

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"files": "go.sum|^.secrets.baseline$",
44
"lines": null
55
},
6-
"generated_at": "2024-03-06T16:42:37Z",
6+
"generated_at": "2025-10-11T06:38:10Z",
77
"plugins_used": [
88
{
99
"name": "AWSKeyDetector"
@@ -77,7 +77,7 @@
7777
}
7878
],
7979
"results": {},
80-
"version": "0.13.1+ibm.62.dss",
80+
"version": "0.13.1+ibm.64.dss",
8181
"word_list": {
8282
"file": null,
8383
"hash": null

examples/api_key_auth/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module "existing_sm_crn_parser" {
2323
module "secrets_manager" {
2424
count = var.existing_sm_instance_crn == null ? 1 : 0
2525
source = "terraform-ibm-modules/secrets-manager/ibm"
26-
version = "2.10.1"
26+
version = "2.10.2"
2727
resource_group_id = module.resource_group.resource_group_id
2828
region = var.region
2929
secrets_manager_name = "${var.prefix}-secrets-manager" #tfsec:ignore:general-secrets-no-plaintext-exposure

examples/iam_auth/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module "resource_group" {
1313

1414
module "secrets_manager" {
1515
source = "terraform-ibm-modules/secrets-manager/ibm"
16-
version = "2.10.1"
16+
version = "2.10.2"
1717
resource_group_id = module.resource_group.resource_group_id
1818
region = var.region
1919
secrets_manager_name = "${var.prefix}-secrets-manager" #tfsec:ignore:general-secrets-no-plaintext-exposure

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.83.3"
77
}
88
}
99
}

tests/go.mod

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,30 @@ module github.com/terraform-ibm-modules/terraform-ibm-secrets-manager-public-cer
22

33
go 1.24.0
44

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

77
require (
88
github.com/gruntwork-io/terratest v0.51.0
99
github.com/stretchr/testify v1.11.1
10-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.10
10+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.60.12
1111
)
1212

1313
require (
1414
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
15+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
1516
go.yaml.in/yaml/v2 v2.4.2 // indirect
1617
gopkg.in/go-playground/validator.v9 v9.31.0 // indirect
1718
)
1819

1920
require (
2021
dario.cat/mergo v1.0.0 // indirect
2122
github.com/IBM-Cloud/bluemix-go v0.0.0-20240719075425-078fcb3a55be // indirect
22-
github.com/IBM-Cloud/power-go-client v1.12.0 // indirect
23-
github.com/IBM/cloud-databases-go-sdk v0.8.0 // indirect
23+
github.com/IBM-Cloud/power-go-client v1.13.0 // indirect
24+
github.com/IBM/cloud-databases-go-sdk v0.8.1 // indirect
2425
github.com/IBM/go-sdk-core v1.1.0
2526
github.com/IBM/go-sdk-core/v5 v5.21.0 // indirect
26-
github.com/IBM/platform-services-go-sdk v0.86.1 // indirect
27-
github.com/IBM/project-go-sdk v0.3.6 // indirect
27+
github.com/IBM/platform-services-go-sdk v0.89.0 // indirect
28+
github.com/IBM/project-go-sdk v0.3.9 // indirect
2829
github.com/IBM/schematics-go-sdk v0.4.0 // indirect
2930
github.com/IBM/vpc-go-sdk v1.0.2 // indirect
3031
github.com/Microsoft/go-winio v0.6.2 // indirect
@@ -41,17 +42,17 @@ require (
4142
github.com/ghodss/yaml v1.0.0 // indirect
4243
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
4344
github.com/go-git/go-billy/v5 v5.6.2 // indirect
44-
github.com/go-git/go-git/v5 v5.16.2 // indirect
45+
github.com/go-git/go-git/v5 v5.16.3 // indirect
4546
github.com/go-logr/logr v1.4.2 // indirect
4647
github.com/go-logr/stdr v1.2.2 // indirect
4748
github.com/go-openapi/analysis v0.23.0 // indirect
48-
github.com/go-openapi/errors v0.22.2 // indirect
49+
github.com/go-openapi/errors v0.22.3 // indirect
4950
github.com/go-openapi/jsonpointer v0.21.1 // indirect
5051
github.com/go-openapi/jsonreference v0.21.0 // indirect
5152
github.com/go-openapi/loads v0.22.0 // indirect
5253
github.com/go-openapi/runtime v0.28.0 // indirect
5354
github.com/go-openapi/spec v0.21.0 // indirect
54-
github.com/go-openapi/strfmt v0.23.0 // indirect
55+
github.com/go-openapi/strfmt v0.24.0 // indirect
5556
github.com/go-openapi/swag v0.23.1 // indirect
5657
github.com/go-openapi/validate v0.24.0 // indirect
5758
github.com/go-playground/locales v0.14.1 // indirect
@@ -68,7 +69,7 @@ require (
6869
github.com/hashicorp/go-safetemp v1.0.0 // indirect
6970
github.com/hashicorp/go-version v1.7.0 // indirect
7071
github.com/hashicorp/hcl/v2 v2.22.0 // indirect
71-
github.com/hashicorp/terraform-json v0.26.0 // indirect
72+
github.com/hashicorp/terraform-json v0.27.2 // indirect
7273
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
7374
github.com/jinzhu/copier v0.4.0 // indirect
7475
github.com/josharian/intern v1.0.0 // indirect
@@ -80,7 +81,6 @@ require (
8081
github.com/mitchellh/go-homedir v1.1.0 // indirect
8182
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
8283
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
83-
github.com/mitchellh/mapstructure v1.5.0 // indirect
8484
github.com/oklog/ulid v1.3.1 // indirect
8585
github.com/opentracing/opentracing-go v1.2.0 // indirect
8686
github.com/pjbgf/sha1cd v0.3.2 // indirect
@@ -91,19 +91,19 @@ require (
9191
github.com/tmccombs/hcl2json v0.6.4 // indirect
9292
github.com/ulikunitz/xz v0.5.11 // indirect
9393
github.com/xanzy/ssh-agent v0.3.3 // indirect
94-
github.com/zclconf/go-cty v1.16.3 // indirect
95-
go.mongodb.org/mongo-driver v1.17.3 // indirect
94+
github.com/zclconf/go-cty v1.16.4 // indirect
95+
go.mongodb.org/mongo-driver v1.17.4 // indirect
9696
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
9797
go.opentelemetry.io/otel v1.35.0 // indirect
9898
go.opentelemetry.io/otel/metric v1.35.0 // indirect
9999
go.opentelemetry.io/otel/trace v1.35.0 // indirect
100-
golang.org/x/crypto v0.41.0 // indirect
101-
golang.org/x/mod v0.26.0 // indirect
102-
golang.org/x/net v0.42.0 // indirect
100+
golang.org/x/crypto v0.43.0 // indirect
101+
golang.org/x/mod v0.28.0 // indirect
102+
golang.org/x/net v0.45.0 // indirect
103103
golang.org/x/sync v0.17.0 // indirect
104-
golang.org/x/sys v0.35.0 // indirect
105-
golang.org/x/text v0.28.0 // indirect
106-
golang.org/x/tools v0.35.0 // indirect
104+
golang.org/x/sys v0.37.0 // indirect
105+
golang.org/x/text v0.30.0 // indirect
106+
golang.org/x/tools v0.37.0 // indirect
107107
gopkg.in/warnings.v0 v0.1.2 // indirect
108108
gopkg.in/yaml.v2 v2.4.0 // indirect
109109
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)