-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade to aws sdk v2 * update comments * update go version * whitespace change to trigger ci * go mod tidy * try updating staticcheck
- Loading branch information
1 parent
cd4c7df
commit 93c6ede
Showing
5 changed files
with
109 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,29 @@ | ||
module github.com/adhocteam/ssm | ||
|
||
go 1.12 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.44.171 | ||
github.com/aws/aws-sdk-go-v2/config v1.27.15 | ||
github.com/aws/aws-sdk-go-v2/service/ssm v1.50.3 | ||
github.com/urfave/cli v1.22.10 | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2 v1.27.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.15 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.9 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.20.8 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.24.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.28.9 // indirect | ||
github.com/aws/smithy-go v1.20.2 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/urfave/cli v1.22.10 | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.