Skip to content

Commit

Permalink
Update aws sdk to latest (#13)
Browse files Browse the repository at this point in the history
* Update aws sdk to latest

the current version of the sdk doesn't support EKS Pod Identity. Need to bump to at least 1.47.11 to get that support but feels better to grab the latest version.

Signed-off-by: Christopher Webber <christopher.webber@formstack.com>

* Run go mod tidy across the changes

Signed-off-by: Christopher Webber <christopher.webber@formstack.com>

---------

Signed-off-by: Christopher Webber <christopher.webber@formstack.com>
  • Loading branch information
cwebberOps authored Oct 1, 2024
1 parent ed6cd95 commit 453eb15
Show file tree
Hide file tree
Showing 4 changed files with 103 additions and 78 deletions.
39 changes: 21 additions & 18 deletions extras/kms/examples/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module github.com/openbao/go-kms-wrapping/extras/kms/examples/v2

go 1.20
go 1.22.1

toolchain go1.22.7

replace github.com/openbao/go-kms-wrapping/v2 => ../../../

Expand All @@ -13,11 +15,11 @@ replace github.com/openbao/go-kms-wrapping/wrappers/transit/v2 => ../../../wrapp
require (
github.com/golang-migrate/migrate/v4 v4.16.2
github.com/hashicorp/go-dbw v0.1.1-0.20231011231112-ed00db42814c
github.com/hashicorp/go-hclog v1.5.0
github.com/hashicorp/go-hclog v1.6.3
github.com/hashicorp/go-secure-stdlib/configutil/v2 v2.0.11
github.com/openbao/go-kms-wrapping/extras/kms/v2 v2.0.0-20231027204625-466117c39bed
github.com/openbao/go-kms-wrapping/v2 v2.0.14
github.com/openbao/go-kms-wrapping/v2 v2.1.0
github.com/openbao/go-kms-wrapping/wrappers/transit/v2 v2.0.8
github.com/hashicorp/go-secure-stdlib/configutil/v2 v2.0.11
gorm.io/driver/sqlite v1.5.4
)

Expand All @@ -29,18 +31,19 @@ require (
github.com/armon/go-radix v1.0.0 // indirect
github.com/bgentry/speakeasy v0.1.0 // indirect
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/go-jose/go-jose/v3 v3.0.1 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/uuid v1.3.1 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/openbao/go-kms-wrapping/plugin/v2 v2.0.5 // indirect
github.com/hashicorp/go-kms-wrapping/plugin/v2 v2.0.5 // indirect
github.com/hashicorp/go-kms-wrapping/v2 v2.0.14 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-plugin v1.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/go-secure-stdlib/base62 v0.1.2 // indirect
github.com/hashicorp/go-secure-stdlib/listenerutil v0.1.9 // indirect
Expand All @@ -51,7 +54,7 @@ require (
github.com/hashicorp/go-secure-stdlib/tlsutil v0.1.3 // indirect
github.com/hashicorp/go-sockaddr v1.0.6 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
github.com/hashicorp/yamux v0.1.1 // indirect
github.com/huandu/xstrings v1.4.0 // indirect
github.com/imdario/mergo v0.3.13 // indirect
Expand All @@ -70,7 +73,7 @@ require (
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/lib/pq v1.10.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-sqlite3 v1.14.17 // indirect
github.com/mitchellh/cli v1.1.5 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
Expand All @@ -79,8 +82,8 @@ require (
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/openbao/openbao/api v0.0.0-20231222185543-009633ab13d1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/openbao/openbao/api/v2 v2.0.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/posener/complete v1.2.3 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/ryanuber/go-glob v1.0.0 // indirect
Expand All @@ -89,16 +92,16 @@ require (
github.com/stretchr/testify v1.8.4 // indirect
github.com/xo/dburl v0.16.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/mod v0.16.0 // indirect
golang.org/x/net v0.22.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.9.1 // indirect
golang.org/x/tools v0.19.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
google.golang.org/grpc v1.59.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gorm.io/driver/postgres v1.5.2 // indirect
gorm.io/gorm v1.25.4 // indirect
Expand Down
Loading

0 comments on commit 453eb15

Please sign in to comment.