This message was deleted.
# contribex
s
This message was deleted.
a
Found the answer after some dig in through the Internet. This error is caused by lack of GOPATH and PATH being set or being set incorrectly. I fixed by adding the following to my
~/.zshrc
export PATH=$PATH:$(go env GOPATH)/bin
export GOPATH=$(go env GOPATH)
The bridge to TF worked like a charm after that. Now I am just jumping through some hoops to get it working in GO and Python. Fun challenge 😀
👍 1