Skip to content

Commit

Permalink
Merge pull request #1 from gkze/gk-updates
Browse files Browse the repository at this point in the history
Update Go modules
  • Loading branch information
gkze authored Nov 29, 2020
2 parents c602b63 + 461ee54 commit e1cf060
Show file tree
Hide file tree
Showing 4 changed files with 221 additions and 48 deletions.
4 changes: 2 additions & 2 deletions cmd/awssume/awssume.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func main() {
},
}

var sessionDuration int64
var sessionDuration int32
execCmd := &cobra.Command{
Use: "exec",
Aliases: []string{"e", "ex", "exe"},
Expand Down Expand Up @@ -204,7 +204,7 @@ func main() {
},
}

execCmd.PersistentFlags().Int64VarP(
execCmd.PersistentFlags().Int32VarP(
&sessionDuration,
"session-duration",
"d",
Expand Down
16 changes: 8 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
module github.com/gkze/awssume

go 1.14
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.22.0
github.com/jmespath/go-jmespath v0.3.0 // indirect
github.com/aws/aws-sdk-go-v2 v0.29.0
github.com/aws/aws-sdk-go-v2/config v0.2.2
github.com/aws/aws-sdk-go-v2/service/sts v0.29.0
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/naoina/go-stringutil v0.1.0 // indirect
github.com/naoina/toml v0.1.1
github.com/spf13/afero v1.2.2
github.com/spf13/cobra v1.0.0
github.com/stretchr/testify v1.5.1
golang.org/x/text v0.3.2 // indirect
gopkg.in/yaml.v3 v3.0.0-20200506231410-2ff61e1afc86
github.com/spf13/afero v1.4.1
github.com/spf13/cobra v1.1.1
github.com/stretchr/testify v1.6.1
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
)
Loading

0 comments on commit e1cf060

Please sign in to comment.