forked from sl1pm4t/k2tf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
32 lines (29 loc) · 1.19 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
module github.com/sl1pm4t/k2tf
go 1.14
require (
github.com/hashicorp/go-multierror v1.0.0
github.com/hashicorp/hcl v1.0.0
github.com/hashicorp/hcl2 v0.0.0-20190821123243-0c888d1241f6
github.com/hashicorp/terraform-plugin-sdk v1.7.0
github.com/hashicorp/terraform-provider-kubernetes v1.12.0
github.com/iancoleman/strcase v0.0.0-20191112232945-16388991a334
github.com/jinzhu/inflection v1.0.0
github.com/mitchellh/reflectwalk v1.0.1
github.com/rs/zerolog v1.19.0
github.com/sirupsen/logrus v1.4.2
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.4.0
github.com/zclconf/go-cty v1.2.1
k8s.io/api v0.16.12
k8s.io/apimachinery v0.16.12
k8s.io/client-go v11.0.0+incompatible
k8s.io/kube-aggregator v0.0.0-20191025230902-aa872b06629d
)
// Override invalid go-autorest pseudo-version. This can be removed once
// all transitive dependencies on go-autorest use correct pseudo-versions.
// See https://tip.golang.org/doc/go1.13#version-validation
// and https://github.com/Azure/go-autorest/issues/481
replace (
github.com/Azure/go-autorest v11.1.2+incompatible => github.com/Azure/go-autorest v12.1.0+incompatible
k8s.io/client-go => k8s.io/client-go v0.0.0-20190918160344-1fbdaa4c8d90
)