anyone get a MongoDB Atlas provider to work in Pul...
# general
r
anyone get a MongoDB Atlas provider to work in Pulumi? It's basically the only thing currently keeping me from migrating from Terraform to Pulumi
c
@red-lamp-97876 Not to my knowledge, but you can convert an arbitrary TF provider to be a Pulumi provider using the pulumi/tfbridge
r
@creamy-potato-29402 yeah I tried to bridge this one https://github.com/akshaykarle/terraform-provider-mongodbatlas to no avail. Was wondering if anyone else had tried something similar
c
@red-lamp-97876 ah, you mean you actually already tried ot use this repository to adapt that provider?
what was the error?
c
@red-lamp-97876 lol yikes
r
haha yeah 🤦‍♂️
c
It seems like we will have to solve that before anyone will succeed.
r
too bad I'm not handy with golang
b
This looks like an issue with Go vendoring. Just to double check, did you run
make ensure
? It appears to me that your project is attempting to use the
vendor/
directory for
terraform-provider-random
from your GOPATH (
<http://github.com/|github.com/>...
), rather than
./vendor
, which is where it should be after running
make ensure
.
c
@big-piano-35669 I think we decided that this is actually a problem with the dependency.
we’d have to fork that TF provider to make progress here
👍 1
r
@big-piano-35669 yes, I ran
make ensure