forked from coveooss/terraform-provider-launchdarkly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
75 lines (73 loc) · 3.47 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
module github.com/coveo/terraform-provider-launchdarkly
require (
cloud.google.com/go/datastore v1.0.0 // indirect
github.com/Azure/azure-sdk-for-go v34.0.0+incompatible // indirect
github.com/Azure/go-autorest/autorest v0.9.1 // indirect
github.com/Azure/go-autorest/autorest/adal v0.6.0 // indirect
github.com/agext/levenshtein v1.2.2
github.com/apparentlymart/go-cidr v1.0.0
github.com/apparentlymart/go-textseg v1.0.0
github.com/armon/go-radix v1.0.0
github.com/aws/aws-sdk-go v1.22.0
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
github.com/bgentry/speakeasy v0.1.0
github.com/blang/semver v3.5.1+incompatible
github.com/coreos/etcd v3.3.16+incompatible // indirect
github.com/coveo/launchdarkly-terraform-provider v0.0.0-20190206094859-ecbc8b2bd874
github.com/fatih/color v1.7.0
github.com/go-ini/ini v1.38.1
github.com/golang/protobuf v1.3.2
github.com/hashicorp/atlas-go v0.0.0-20170808163836-8261ea080105 // indirect
github.com/hashicorp/consul/api v1.2.0 // indirect
github.com/hashicorp/errwrap v1.0.0
github.com/hashicorp/go-cleanhttp v0.5.1
github.com/hashicorp/go-getter v1.3.1-0.20190627223108-da0323b9545e
github.com/hashicorp/go-hclog v0.9.2
github.com/hashicorp/go-multierror v1.0.0
github.com/hashicorp/go-plugin v1.0.1-0.20190610192547-a1bc61569a26
github.com/hashicorp/go-retryablehttp v0.6.2 // indirect
github.com/hashicorp/go-rootcerts v1.0.1 // indirect
github.com/hashicorp/go-safetemp v1.0.0
github.com/hashicorp/go-uuid v1.0.1
github.com/hashicorp/go-version v1.2.0
github.com/hashicorp/hcl v1.0.0
github.com/hashicorp/hcl2 v0.0.0-20190821123243-0c888d1241f6
github.com/hashicorp/hil v0.0.0-20190212112733-ab17b08d6590
github.com/hashicorp/terraform v0.12.8
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
github.com/joyent/triton-go v1.7.0 // indirect
github.com/lusis/go-artifactory v0.0.0-20180304164534-a47f63f234b2 // indirect
github.com/masterzen/winrm v0.0.0-20190308153735-1d17eaf15943 // indirect
github.com/mattn/go-colorable v0.1.2
github.com/mattn/go-isatty v0.0.8
github.com/mattn/go-shellwords v1.0.6 // indirect
github.com/mitchellh/cli v1.0.0
github.com/mitchellh/copystructure v1.0.0
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/go-testing-interface v1.0.0
github.com/mitchellh/go-wordwrap v1.0.0
github.com/mitchellh/hashstructure v1.0.0
github.com/mitchellh/mapstructure v1.1.2
github.com/mitchellh/panicwrap v0.0.0-20190228164358-f67bf3f3d291 // indirect
github.com/mitchellh/reflectwalk v1.0.0
github.com/oklog/run v1.0.0
github.com/packer-community/winrmcp v0.0.0-20180921211025-c76d91c1e7db // indirect
github.com/posener/complete v1.2.1
github.com/rogpeppe/godef v1.1.1 // indirect
github.com/ryanuber/columnize v2.1.0+incompatible // indirect
github.com/terraform-providers/terraform-provider-aws v1.60.0 // indirect
github.com/terraform-providers/terraform-provider-openstack v1.23.0 // indirect
github.com/ulikunitz/xz v0.5.5
github.com/zclconf/go-cty v1.0.1-0.20190708163926-19588f92a98f
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
golang.org/x/net v0.0.0-20190620200207-3b0461eec859
golang.org/x/sys v0.0.0-20190804053845-51ab0e2deafa
golang.org/x/text v0.3.2
golang.org/x/tools v0.0.0-20191010171213-8abd42400456 // indirect
google.golang.org/api v0.8.0
google.golang.org/appengine v1.6.5 // indirect
google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64
google.golang.org/grpc v1.21.1
)
go 1.13