-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: get latest aws-nuke release. (#432)
* fix: get latest aws-nuke release. * Using latest release from Optum/aws-nuke fork * Switch back to go 1.17 * Switch back to go 1.17 * go mod updates * go mod change * Had to create new release after change * Go sum was out of sync * Update gitignore --------- Co-authored-by: Josh Shollenbarger <[email protected]> Co-authored-by: Jack Shubatt <[email protected]>
- Loading branch information
1 parent
0aa058e
commit d4dfa38
Showing
25 changed files
with
8,588 additions
and
1,014 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
run: | ||
timeout: 5m0s | ||
timeout: 5m | ||
|
||
issues: | ||
exclude: | ||
|
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,62 +1,107 @@ | ||
module github.com/Optum/dce | ||
|
||
go 1.17 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/360EntSecGroup-Skylar/excelize v1.4.1 | ||
github.com/avast/retry-go v2.6.0+incompatible | ||
github.com/aws/aws-lambda-go v1.19.1 | ||
github.com/aws/aws-sdk-go v1.36.30 | ||
github.com/aws/aws-sdk-go v1.44.180 | ||
github.com/awslabs/aws-lambda-go-api-proxy v0.8.0 | ||
github.com/caarlos0/env v3.5.0+incompatible | ||
github.com/go-ozzo/ozzo-validation v3.6.0+incompatible | ||
github.com/google/uuid v1.1.2 | ||
github.com/google/uuid v1.3.0 | ||
github.com/gorilla/handlers v1.5.0 | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/gorilla/schema v1.2.0 | ||
github.com/gruntwork-io/terratest v0.29.0 | ||
github.com/imdario/mergo v0.3.11 | ||
github.com/mitchellh/mapstructure v1.3.3 | ||
github.com/gruntwork-io/terratest v0.41.7 | ||
github.com/imdario/mergo v0.3.13 | ||
github.com/mitchellh/mapstructure v1.5.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rebuy-de/aws-nuke v1.4.0 | ||
github.com/stretchr/testify v1.6.1 | ||
github.com/stretchr/testify v1.8.1 | ||
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df | ||
gopkg.in/oleiade/reflections.v1 v1.0.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect | ||
cloud.google.com/go v0.107.0 // indirect | ||
cloud.google.com/go/compute v1.13.0 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.1 // indirect | ||
cloud.google.com/go/storage v1.27.0 // indirect | ||
github.com/agext/levenshtein v1.2.3 // indirect | ||
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect | ||
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect | ||
github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fatih/color v1.9.0 // indirect | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.1 // indirect | ||
github.com/go-sql-driver/mysql v1.5.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
github.com/go-errors/errors v1.0.2-0.20180813162953-d98b870cc4e0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect | ||
github.com/googleapis/gax-go/v2 v2.7.0 // indirect | ||
github.com/gruntwork-io/go-commons v0.8.0 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-getter v1.6.1 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-safetemp v1.0.0 // indirect | ||
github.com/hashicorp/go-version v1.4.0 // indirect | ||
github.com/hashicorp/hcl/v2 v2.9.1 // indirect | ||
github.com/hashicorp/terraform-json v0.13.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect | ||
github.com/mattn/go-colorable v0.1.7 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/klauspost/compress v1.15.13 // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mattn/go-zglob v0.0.2-0.20190814121620-e3c945676326 // indirect | ||
github.com/mb0/glob v0.0.0-20160210091149-1eb79d2de6c4 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/go-testing-interface v1.14.1 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect | ||
github.com/oleiade/reflections v1.0.0 // indirect | ||
github.com/onsi/ginkgo v1.12.0 // indirect | ||
github.com/onsi/gomega v1.9.0 // indirect | ||
github.com/onsi/ginkgo v1.16.5 // indirect | ||
github.com/onsi/gomega v1.18.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/pquerna/otp v1.2.0 // indirect | ||
github.com/sirupsen/logrus v1.6.0 // indirect | ||
github.com/spf13/cobra v1.0.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/spf13/cobra v1.6.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/objx v0.3.0 // indirect | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect | ||
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
golang.org/x/sys v0.0.0-20220517195934-5e4e11fc645e // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
github.com/tmccombs/hcl2json v0.3.3 // indirect | ||
github.com/ulikunitz/xz v0.5.11 // indirect | ||
github.com/urfave/cli v1.22.2 // indirect | ||
github.com/zclconf/go-cty v1.9.1 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect | ||
golang.org/x/net v0.5.0 // indirect | ||
golang.org/x/oauth2 v0.4.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/sys v0.4.0 // indirect | ||
golang.org/x/text v0.6.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect | ||
google.golang.org/api v0.103.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20221205194025-8222ab48f5fc // indirect | ||
google.golang.org/grpc v1.51.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/iam v0.10.0 // indirect | ||
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect | ||
github.com/go-sql-driver/mysql v1.5.0 // indirect | ||
github.com/oleiade/reflections v1.0.0 // indirect | ||
github.com/rebuy-de/aws-nuke/v2 v2.21.2 | ||
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect | ||
) | ||
|
||
replace github.com/rebuy-de/aws-nuke => github.com/Optum/aws-nuke v1.3.0 | ||
replace github.com/rebuy-de/aws-nuke/v2 => github.com/Optum/aws-nuke/v2 v2.0.1 |
Oops, something went wrong.