Files
terraform-provider-unifi/main.go
2020-12-01 12:40:53 -05:00

44 lines
1.0 KiB
Go

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"
)
// Generate docs for website
//go:generate go run github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs
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() {
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/paultyng/unifi", opts)
if err != nil {
log.Fatal(err.Error())
}
return
}
plugin.Serve(opts)
}