Skip to content

Commit fbb3b5a

Browse files
authored
feat: Add HTTP retry strategy with backoff (#65)
1 parent 79e97f5 commit fbb3b5a

File tree

4 files changed

+124
-6
lines changed

4 files changed

+124
-6
lines changed

go.mod

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,30 @@ module github.com/draios/terraform-provider-sysdig
33
go 1.12
44

55
require (
6+
github.com/agext/levenshtein v1.2.3 // indirect
7+
github.com/fatih/color v1.10.0 // indirect
8+
github.com/golang/protobuf v1.4.3 // indirect
9+
github.com/google/go-cmp v0.5.4 // indirect
10+
github.com/hashicorp/errwrap v1.1.0 // indirect
611
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
7-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.0.3
12+
github.com/hashicorp/go-multierror v1.1.0 // indirect
13+
github.com/hashicorp/go-retryablehttp v0.6.8
14+
github.com/hashicorp/go-uuid v1.0.2 // indirect
15+
github.com/hashicorp/hcl/v2 v2.8.1 // indirect
16+
github.com/hashicorp/terraform-plugin-go v0.2.0 // indirect
17+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.4.0
18+
github.com/hashicorp/terraform-plugin-test/v2 v2.1.2 // indirect
19+
github.com/hashicorp/yamux v0.0.0-20200609203250-aecfd211c9ce // indirect
20+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
21+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
22+
github.com/mitchellh/mapstructure v1.4.0 // indirect
23+
github.com/oklog/run v1.1.0 // indirect
824
github.com/spf13/cast v1.3.1
25+
github.com/zclconf/go-cty v1.7.1 // indirect
26+
golang.org/x/net v0.0.0-20201224014010-6772e930b67b // indirect
27+
golang.org/x/sys v0.0.0-20201231184435-2d18734c6014 // indirect
28+
golang.org/x/text v0.3.4 // indirect
29+
google.golang.org/appengine v1.6.7 // indirect
30+
google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d // indirect
31+
google.golang.org/grpc v1.34.0 // indirect
932
)

0 commit comments

Comments
 (0)