Open Useurmind opened 4 years ago
Would it at least be possible to provide a binary release on the release page as long as this does not work. The last binary release is from the 0.5.0 version.
I've just published the draft release that was built. I don't get why go build work but go get doesn't :thinking:
Hi,
if I execute
go get github.com/nhurel/terraspec@0.6.2
the call fails with:
This seems to be an issue with transitive dependencies. It looks like terraform 0.13 depends on
client-go
for some reason and does so by referencingv10.0.0+incompatible
which is pretty old and not a go module. Seems like they have changed from major version 11 back to version 0 at some point and that is causing some trouble. The k8s api module does not have a major version yet and it seems to mix the very oldclient-go
version with a new k8s api version.I am still curious why terraform requires a reference to
client-go
because they should not be dependent on kubernetes.