forked from sl1pm4t/k2tf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
126 additions
and
339 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,32 @@ | ||
module github.com/sl1pm4t/k2tf | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
require ( | ||
cloud.google.com/go v0.49.0 // indirect | ||
cloud.google.com/go/bigquery v1.3.0 // indirect | ||
cloud.google.com/go/pubsub v1.1.0 // indirect | ||
cloud.google.com/go/storage v1.4.0 // indirect | ||
github.com/Azure/go-autorest v12.2.0+incompatible | ||
github.com/aws/aws-sdk-go v1.26.1 // indirect | ||
github.com/go-test/deep v1.0.4 // indirect | ||
github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 // indirect | ||
github.com/hashicorp/go-hclog v0.10.0 // indirect | ||
github.com/hashicorp/go-multierror v1.0.0 | ||
github.com/hashicorp/hcl v1.0.0 | ||
github.com/hashicorp/hcl/v2 v2.2.0 // indirect | ||
github.com/hashicorp/hcl2 v0.0.0-20190821123243-0c888d1241f6 | ||
github.com/hashicorp/terraform v0.12.18 | ||
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-svchost v0.0.0-20191119180714-d2e4933b9136 // indirect | ||
github.com/hashicorp/yamux v0.0.0-20190923154419-df201c70410d // indirect | ||
github.com/iancoleman/strcase v0.0.0-20180726023541-3605ed457bf7 | ||
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a | ||
github.com/jstemmer/go-junit-report v0.9.1 // indirect | ||
github.com/keybase/go-crypto v0.0.0-20190828182435-a05457805304 // indirect | ||
github.com/marstr/guid v1.1.0 // indirect | ||
github.com/mattn/go-isatty v0.0.11 // indirect | ||
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/posener/complete v1.2.3 // indirect | ||
github.com/rs/zerolog v1.11.0 | ||
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/terraform-providers/terraform-provider-kubernetes v1.11.1 | ||
github.com/zclconf/go-cty v1.2.1 | ||
go.opencensus.io v0.22.2 // indirect | ||
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect | ||
golang.org/x/exp v0.0.0-20191129062945-2f5052295587 // indirect | ||
golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f // indirect | ||
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 // indirect | ||
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6 // indirect | ||
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect | ||
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449 // indirect | ||
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect | ||
golang.org/x/tools v0.0.0-20191213183929-27b81bef4ab3 // indirect | ||
google.golang.org/appengine v1.6.5 // indirect | ||
google.golang.org/genproto v0.0.0-20191206224255-0243a4be9c8f // indirect | ||
google.golang.org/grpc v1.25.1 // indirect | ||
gopkg.in/yaml.v2 v2.2.7 // indirect | ||
k8s.io/api v0.0.0-20191025225708-5524a3672fbb | ||
k8s.io/apimachinery v0.0.0-20191025225532-af6325b3a843 | ||
k8s.io/client-go v12.0.0+incompatible | ||
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 | ||
) | ||
|
||
replace git.apache.org/thrift.git => github.com/apache/thrift v0.12.0 | ||
|
||
replace github.com/Unknwon/com => github.com/unknwon/com v1.0.1 | ||
// 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 | ||
) |
Oops, something went wrong.