You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
I am attempting to create a Pulumi adapter based on the Terraform provider however I get the issue: import "github.com/fly-apps/terraform-provider-fly" is a program, not an importable package
I am not a Go programmer so I am unsure but I believe that it's because the main.go package is called main, is this something that could be fixed so it would be importable?
The text was updated successfully, but these errors were encountered:
Hi @AlgorithmEnigma - I'm not familiar with how exactly the Pulumi adapters work, but you could try importing using import "github.com/fly-apps/terraform-provider-fly/internal/provider" which is just the provider code and not the executable wrapper.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am attempting to create a Pulumi adapter based on the Terraform provider however I get the issue:
import "github.com/fly-apps/terraform-provider-fly" is a program, not an importable package
I am not a Go programmer so I am unsure but I believe that it's because the main.go package is called main, is this something that could be fixed so it would be importable?
The text was updated successfully, but these errors were encountered: