forked from vancluever/terraform-provider-acme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
36 lines (33 loc) · 1.53 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
module github.com/terraform-providers/terraform-provider-acme
require (
github.com/BurntSushi/toml v0.3.1
github.com/davecgh/go-spew v1.1.1
github.com/go-acme/lego/v3 v3.7.0
github.com/go-test/deep v1.0.2-0.20181118220953-042da051cf31 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.9.5 // indirect
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
github.com/hashicorp/go-hclog v0.9.1 // indirect
github.com/hashicorp/go-multierror v1.0.0
github.com/hashicorp/go-version v1.2.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/hil v0.0.0-20190212132231-97b3a9cdfa93 // indirect
github.com/hashicorp/terraform v0.12.6
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/mattn/go-isatty v0.0.7 // indirect
github.com/miekg/dns v1.1.27
github.com/mitchellh/copystructure v1.0.0
github.com/mitchellh/reflectwalk v1.0.1 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/terraform-providers/terraform-provider-tls v1.2.0
github.com/ulikunitz/xz v0.5.6 // indirect
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
software.sslmate.com/src/go-pkcs12 v0.0.0-20190209200317-47dd539968c4
)
replace (
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.3.0+incompatible
github.com/h2non/gock => gopkg.in/h2non/gock.v1 v1.0.14
github.com/ldez/go-auroradns => github.com/ldez/go-auroradns/v2 v2.0.2
sourcegraph.com/sourcegraph/go-diff => github.com/sourcegraph/go-diff v0.5.1
)
go 1.13