Add debug entry point for delve

This commit is contained in:
Paul Tyng
2020-10-16 21:07:39 -04:00
parent a521ca89d6
commit 640cfdc5ec
4 changed files with 90 additions and 61 deletions

33
main.go
View File

@@ -1,13 +1,40 @@
package main // import "github.com/paultyng/terraform-provider-unifi"
import (
"context"
"flag"
"log"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
"github.com/paultyng/terraform-provider-unifi/internal/provider"
)
var (
// these will be set by the goreleaser configuration
// to appropriate values for the compiled binary
version string = "dev"
// goreleaser can also pass the specific commit if you want
// commit string = ""
)
func main() {
plugin.Serve(&plugin.ServeOpts{
ProviderFunc: provider.New,
})
var debugMode bool
flag.BoolVar(&debugMode, "debug", false, "set to true to run the provider with support for debuggers like delve")
flag.Parse()
opts := &plugin.ServeOpts{ProviderFunc: provider.New(version)}
if debugMode {
// TODO: update this string with the full name of your provider as used in your configs
err := plugin.Debug(context.Background(), "registry.terraform.io/hashicorp/scaffolding", opts)
if err != nil {
log.Fatal(err.Error())
}
return
}
plugin.Serve(opts)
}