Skip to content

Commit 5f4b25c

Browse files
author
Grant Griffiths
authored
Merge pull request #80 from BlaineEXE/vault-convert-imports-to-mpl-from-busl
convert vault auth code from busl to mpl libraries
2 parents efe55db + 23e0575 commit 5f4b25c

File tree

3 files changed

+64
-1767
lines changed

3 files changed

+64
-1767
lines changed

go.mod

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ require (
1010
github.com/IBM/keyprotect-go-client v0.5.1
1111
github.com/aws/aws-sdk-go v1.44.164
1212
github.com/golang/mock v1.6.0
13-
github.com/hashicorp/go-hclog v1.3.1
14-
github.com/hashicorp/vault v1.12.2
15-
github.com/hashicorp/vault/api v1.8.0
16-
github.com/hashicorp/vault/api/auth/approle v0.1.0
13+
github.com/hashicorp/vault/api v1.10.0
14+
github.com/hashicorp/vault/api/auth/approle v0.5.0
15+
github.com/hashicorp/vault/api/auth/kubernetes v0.5.0
1716
github.com/pborman/uuid v1.2.0
1817
github.com/portworx/dcos-secrets v0.0.0-20180616013705-8e8ec3f66611
1918
github.com/portworx/kvdb v0.0.0-20200929023115-b312c7519467
@@ -25,17 +24,28 @@ require (
2524
)
2625

2726
require (
27+
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
28+
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
29+
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
30+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2831
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
29-
github.com/fsnotify/fsnotify v1.6.0 // indirect
3032
github.com/go-openapi/jsonreference v0.20.0 // indirect
31-
github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect
33+
github.com/go-test/deep v1.0.8 // indirect
34+
github.com/golang-jwt/jwt/v4 v4.3.0 // indirect
35+
github.com/google/uuid v1.3.0 // indirect
36+
github.com/hashicorp/go-retryablehttp v0.7.1 // indirect
37+
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
38+
github.com/imdario/mergo v0.3.13 // indirect
39+
github.com/kr/pretty v0.3.0 // indirect
40+
github.com/onsi/ginkgo v1.16.5 // indirect
3241
github.com/onsi/ginkgo/v2 v2.6.0 // indirect
3342
github.com/onsi/gomega v1.24.1 // indirect
34-
github.com/prometheus/client_golang v1.14.0 // indirect
35-
go.uber.org/goleak v1.2.0 // indirect
36-
golang.org/x/net v0.3.1-0.20221206200815-1e63c2f08a10 // indirect
43+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
44+
github.com/rogpeppe/go-internal v1.8.1 // indirect
3745
golang.org/x/oauth2 v0.0.0-20220524215830-622c5d57e401
3846
golang.org/x/time v0.3.0 // indirect
47+
google.golang.org/protobuf v1.28.1 // indirect
48+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
3949
k8s.io/api v0.26.0 // indirect
4050
k8s.io/apimachinery v0.26.0 // indirect
4151
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect

0 commit comments

Comments
 (0)