I'm new to golang so please forgive the basic ques...
# contribute
a
I'm new to golang so please forgive the basic questions: https://github.com/andrewchambers/terraform-provider-nix He has no
provider.go
under
./nix
does that mean I cannot import this package and use it as a provider for pulumi without forking it first? I cannot import the root package:
<http://github.com/andrewchambers/terraform-provider-nix|github.com/andrewchambers/terraform-provider-nix>
which does contain
provider.go
as this will result in protest from golangs package manager:
import "<http://github.com/andrewchambers/terraform-provider-nix|github.com/andrewchambers/terraform-provider-nix>" is a program, not an importable package
b
hey, there's a few things that need to change here on this provider. The first being we only support providers that are using the terraform-provider-sdk, so you'll at the very least have to fork it 😞 With regards to the layout, it isn't quite what is expected, so it's probably best to fork it and fix it up.
please feel free to DM me if you need more help with it
a
Thanks c: