Skip to content

Commit 4401cc0

Browse files
fix(deps): update dependencies
1 parent b65e455 commit 4401cc0

7 files changed

Lines changed: 79 additions & 71 deletions

File tree

examples/advanced/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ locals {
4747

4848
module "key_protect_all_inclusive" {
4949
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
50-
version = "5.6.4"
50+
version = "5.6.5"
5151
resource_group_id = module.resource_group.resource_group_id
5252
key_protect_instance_name = "${var.prefix}-kms"
5353
region = var.region

solutions/fully-configurable/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ resource "time_sleep" "wait_for_kms_cross_account_authorization_policy" {
116116
module "kms" {
117117
count = var.kms_encryption_enabled && var.existing_kms_key_crn == null ? 1 : 0 # no need to create any KMS resources if passing an existing key
118118
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
119-
version = "5.6.4"
119+
version = "5.6.5"
120120
providers = {
121121
ibm = ibm.kms
122122
}

solutions/fully-configurable/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88
}
99
time = {
1010
source = "hashicorp/time"
11-
version = "0.13.1"
11+
version = "0.14.0"
1212
}
1313
}
1414
}

tests/existing-resources/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module "event_notifications" {
3131

3232
module "key_protect" {
3333
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
34-
version = "5.6.4"
34+
version = "5.6.5"
3535
key_protect_instance_name = "${var.prefix}-key-protect"
3636
resource_group_id = module.resource_group.resource_group_id
3737
region = var.region

tests/go.mod

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ go 1.26.1
44

55
require (
66
github.com/IBM/go-sdk-core/v5 v5.21.2
7-
github.com/gruntwork-io/terratest v0.56.0
7+
github.com/gruntwork-io/terratest v1.0.0
88
github.com/stretchr/testify v1.11.1
9-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.70.3
9+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.70.5
1010
)
1111

1212
require (
1313
dario.cat/mergo v1.0.0 // indirect
1414
github.com/IBM-Cloud/bluemix-go v0.0.0-20240719075425-078fcb3a55be // indirect
1515
github.com/IBM-Cloud/power-go-client v1.15.0 // indirect
1616
github.com/IBM/cloud-databases-go-sdk v0.8.1 // indirect
17-
github.com/IBM/platform-services-go-sdk v0.97.2 // indirect
17+
github.com/IBM/platform-services-go-sdk v0.97.4 // indirect
1818
github.com/IBM/project-go-sdk v0.4.0 // indirect
1919
github.com/IBM/schematics-go-sdk v0.4.0 // indirect
2020
github.com/IBM/vpc-go-sdk v1.0.2 // indirect
@@ -23,15 +23,16 @@ require (
2323
github.com/agext/levenshtein v1.2.3 // indirect
2424
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
2525
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
26+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2627
github.com/cloudflare/circl v1.6.3 // indirect
27-
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
28-
github.com/davecgh/go-spew v1.1.1 // indirect
28+
github.com/cyphar/filepath-securejoin v0.6.1 // indirect
29+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2930
github.com/emirpasic/gods v1.18.1 // indirect
3031
github.com/gabriel-vasile/mimetype v1.4.11 // indirect
3132
github.com/ghodss/yaml v1.0.0 // indirect
3233
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
33-
github.com/go-git/go-billy/v5 v5.8.0 // indirect
34-
github.com/go-git/go-git/v5 v5.18.0 // indirect
34+
github.com/go-git/go-billy/v5 v5.9.0 // indirect
35+
github.com/go-git/go-git/v5 v5.19.0 // indirect
3536
github.com/go-logr/logr v1.4.3 // indirect
3637
github.com/go-logr/stdr v1.2.2 // indirect
3738
github.com/go-openapi/analysis v0.23.0 // indirect
@@ -41,7 +42,7 @@ require (
4142
github.com/go-openapi/loads v0.22.0 // indirect
4243
github.com/go-openapi/runtime v0.28.0 // indirect
4344
github.com/go-openapi/spec v0.21.0 // indirect
44-
github.com/go-openapi/strfmt v0.26.1 // indirect
45+
github.com/go-openapi/strfmt v0.26.2 // indirect
4546
github.com/go-openapi/swag v0.23.1 // indirect
4647
github.com/go-openapi/validate v0.24.0 // indirect
4748
github.com/go-playground/locales v0.14.1 // indirect
@@ -65,6 +66,7 @@ require (
6566
github.com/josharian/intern v1.0.0 // indirect
6667
github.com/kevinburke/ssh_config v1.2.0 // indirect
6768
github.com/klauspost/compress v1.16.7 // indirect
69+
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
6870
github.com/leodido/go-urn v1.4.0 // indirect
6971
github.com/mailru/easyjson v0.9.0 // indirect
7072
github.com/mattn/go-zglob v0.0.4 // indirect
@@ -73,27 +75,27 @@ require (
7375
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
7476
github.com/oklog/ulid/v2 v2.1.1 // indirect
7577
github.com/opentracing/opentracing-go v1.2.0 // indirect
76-
github.com/pjbgf/sha1cd v0.3.2 // indirect
77-
github.com/pmezard/go-difflib v1.0.0 // indirect
78+
github.com/pjbgf/sha1cd v0.6.0 // indirect
79+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
7880
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
7981
github.com/skeema/knownhosts v1.3.1 // indirect
8082
github.com/stretchr/objx v0.5.2 // indirect
8183
github.com/tmccombs/hcl2json v0.6.4 // indirect
8284
github.com/ulikunitz/xz v0.5.11 // indirect
8385
github.com/xanzy/ssh-agent v0.3.3 // indirect
8486
github.com/zclconf/go-cty v1.16.4 // indirect
85-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
86-
go.opentelemetry.io/otel v1.35.0 // indirect
87-
go.opentelemetry.io/otel/metric v1.35.0 // indirect
88-
go.opentelemetry.io/otel/trace v1.35.0 // indirect
87+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
88+
go.opentelemetry.io/otel v1.43.0 // indirect
89+
go.opentelemetry.io/otel/metric v1.43.0 // indirect
90+
go.opentelemetry.io/otel/trace v1.43.0 // indirect
8991
go.yaml.in/yaml/v2 v2.4.3 // indirect
90-
golang.org/x/crypto v0.50.0 // indirect
91-
golang.org/x/mod v0.34.0 // indirect
92-
golang.org/x/net v0.52.0 // indirect
92+
golang.org/x/crypto v0.51.0 // indirect
93+
golang.org/x/mod v0.35.0 // indirect
94+
golang.org/x/net v0.53.0 // indirect
9395
golang.org/x/sync v0.20.0 // indirect
94-
golang.org/x/sys v0.43.0 // indirect
95-
golang.org/x/text v0.36.0 // indirect
96-
golang.org/x/tools v0.43.0 // indirect
96+
golang.org/x/sys v0.44.0 // indirect
97+
golang.org/x/text v0.37.0 // indirect
98+
golang.org/x/tools v0.44.0 // indirect
9799
gopkg.in/warnings.v0 v0.1.2 // indirect
98100
gopkg.in/yaml.v2 v2.4.0 // indirect
99101
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)