forked from codefresh-io/terraform-provider-codefresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
25 lines (23 loc) · 962 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module github.com/codefresh-io/terraform-provider-codefresh
require (
github.com/Masterminds/semver v1.5.0
github.com/aws/aws-sdk-go v1.30.12 // indirect
github.com/bflad/tfproviderdocs v0.6.0
github.com/bflad/tfproviderlint v0.14.0
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/cenkalti/backoff/v4 v4.1.0
github.com/client9/misspell v0.3.4
github.com/dlclark/regexp2 v1.4.0
github.com/ghodss/yaml v1.0.0
github.com/golangci/golangci-lint v1.27.0
github.com/hashicorp/terraform-config-inspect v0.0.0-20191212124732-c6ae6269b9d7 // indirect
github.com/hashicorp/terraform-plugin-sdk v1.7.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.0.0-rc.2.0.20200717132200-7435e2abc9d1
github.com/iancoleman/orderedmap v0.2.0
github.com/imdario/mergo v0.3.9
github.com/stretchr/objx v0.1.1
github.com/stretchr/testify v1.6.1 // indirect
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37 // indirect
gopkg.in/yaml.v2 v2.2.8
)
go 1.13