Skip to content

Commit 59ad234

Browse files
authored
fix(deps): updated to secrets manager v1.17.1 to address bug when using existing instance (#101)
1 parent 9ba481c commit 59ad234

File tree

10 files changed

+1064
-20
lines changed

10 files changed

+1064
-20
lines changed

stack_definition.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@
317317
}
318318
],
319319
"name": "4b - Secrets Manager",
320-
"version_locator": "7a4d68b4-cf8b-40cd-a3d1-f49aff526eb3.c93ef740-6249-47d0-b91a-c8e0fbd0ed99-global"
320+
"version_locator": "7a4d68b4-cf8b-40cd-a3d1-f49aff526eb3.e806bb05-dfb9-40a8-99bf-1b9272cf8d82-global"
321321
}
322322
],
323323
"outputs": [

tests/go.mod

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,17 @@ go 1.21
55
toolchain go1.22.5
66

77
require (
8+
github.com/gruntwork-io/terratest v0.46.15
89
github.com/stretchr/testify v1.9.0
910
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.35.4
1011
)
1112

1213
require (
14+
cloud.google.com/go v0.110.4 // indirect
15+
cloud.google.com/go/compute v1.21.0 // indirect
16+
cloud.google.com/go/compute/metadata v0.2.3 // indirect
17+
cloud.google.com/go/iam v1.1.1 // indirect
18+
cloud.google.com/go/storage v1.30.1 // indirect
1319
github.com/IBM-Cloud/bluemix-go v0.0.0-20240423071914-9e96525baef4 // indirect
1420
github.com/IBM-Cloud/power-go-client v1.6.0 // indirect
1521
github.com/IBM/cloud-databases-go-sdk v0.7.0 // indirect
@@ -18,7 +24,12 @@ require (
1824
github.com/IBM/project-go-sdk v0.3.0 // indirect
1925
github.com/IBM/vpc-go-sdk v0.51.0 // indirect
2026
github.com/Microsoft/go-winio v0.6.1 // indirect
27+
github.com/agext/levenshtein v1.2.3 // indirect
28+
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
29+
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
2130
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
31+
github.com/aws/aws-sdk-go v1.44.281 // indirect
32+
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
2233
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
2334
github.com/davecgh/go-spew v1.1.1 // indirect
2435
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
@@ -42,35 +53,64 @@ require (
4253
github.com/go-playground/universal-translator v0.18.1 // indirect
4354
github.com/go-playground/validator/v10 v10.19.0 // indirect
4455
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
56+
github.com/golang/protobuf v1.5.3 // indirect
4557
github.com/google/go-cmp v0.6.0 // indirect
58+
github.com/google/s2a-go v0.1.4 // indirect
4659
github.com/google/uuid v1.6.0 // indirect
47-
github.com/gruntwork-io/terratest v0.46.15 // indirect
60+
github.com/googleapis/enterprise-certificate-proxy v0.2.4 // indirect
61+
github.com/googleapis/gax-go/v2 v2.11.0 // indirect
62+
github.com/hashicorp/errwrap v1.1.0 // indirect
4863
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
64+
github.com/hashicorp/go-getter v1.7.4 // indirect
65+
github.com/hashicorp/go-multierror v1.1.1 // indirect
4966
github.com/hashicorp/go-retryablehttp v0.7.5 // indirect
67+
github.com/hashicorp/go-safetemp v1.0.0 // indirect
68+
github.com/hashicorp/go-version v1.6.0 // indirect
69+
github.com/hashicorp/hcl/v2 v2.17.0 // indirect
70+
github.com/hashicorp/terraform-json v0.22.1 // indirect
5071
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
5172
github.com/jinzhu/copier v0.4.0 // indirect
73+
github.com/jmespath/go-jmespath v0.4.0 // indirect
5274
github.com/josharian/intern v1.0.0 // indirect
5375
github.com/kevinburke/ssh_config v1.2.0 // indirect
76+
github.com/klauspost/compress v1.16.5 // indirect
5477
github.com/leodido/go-urn v1.4.0 // indirect
5578
github.com/mailru/easyjson v0.7.7 // indirect
79+
github.com/mattn/go-zglob v0.0.4 // indirect
80+
github.com/mitchellh/go-homedir v1.1.0 // indirect
81+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
82+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
5683
github.com/mitchellh/mapstructure v1.5.0 // indirect
5784
github.com/oklog/ulid v1.3.1 // indirect
5885
github.com/opentracing/opentracing-go v1.2.0 // indirect
5986
github.com/pjbgf/sha1cd v0.3.0 // indirect
6087
github.com/pmezard/go-difflib v1.0.0 // indirect
6188
github.com/skeema/knownhosts v1.2.2 // indirect
89+
github.com/tmccombs/hcl2json v0.5.0 // indirect
90+
github.com/ulikunitz/xz v0.5.11 // indirect
6291
github.com/xanzy/ssh-agent v0.3.3 // indirect
92+
github.com/zclconf/go-cty v1.14.4 // indirect
6393
go.mongodb.org/mongo-driver v1.14.0 // indirect
94+
go.opencensus.io v0.24.0 // indirect
6495
go.opentelemetry.io/otel v1.16.0 // indirect
6596
go.opentelemetry.io/otel/metric v1.16.0 // indirect
6697
go.opentelemetry.io/otel/trace v1.16.0 // indirect
6798
golang.org/x/crypto v0.24.0 // indirect
6899
golang.org/x/mod v0.17.0 // indirect
69100
golang.org/x/net v0.25.0 // indirect
101+
golang.org/x/oauth2 v0.10.0 // indirect
70102
golang.org/x/sync v0.7.0 // indirect
71103
golang.org/x/sys v0.21.0 // indirect
72104
golang.org/x/text v0.16.0 // indirect
73105
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
106+
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
107+
google.golang.org/api v0.127.0 // indirect
108+
google.golang.org/appengine v1.6.7 // indirect
109+
google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98 // indirect
110+
google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 // indirect
111+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect
112+
google.golang.org/grpc v1.58.3 // indirect
113+
google.golang.org/protobuf v1.33.0 // indirect
74114
gopkg.in/warnings.v0 v0.1.2 // indirect
75115
gopkg.in/yaml.v2 v2.4.0 // indirect
76116
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)