-
Notifications
You must be signed in to change notification settings - Fork 229
/
main.go
53 lines (41 loc) · 1.37 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package main
import (
"context"
"flag"
"log"
"github.com/grafana/terraform-provider-grafana/v3/pkg/provider"
"github.com/hashicorp/terraform-plugin-go/tfprotov5"
"github.com/hashicorp/terraform-plugin-go/tfprotov5/tf5server"
)
//go:generate go run ./tools/genimports examples
//go:generate go run github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs
//go:generate go run ./tools/setcategories docs
var (
// these will be set by the goreleaser configuration
// to appropriate values for the compiled binary
version string = "dev"
)
// Mux config taken here: https://developer.hashicorp.com/terraform/plugin/framework/migrating/mux#terraform-0-12-compatibility-example
// While not every resource is migrated to the Terraform Plugin Framework, we must mux the old and new providers together.
func main() {
ctx := context.Background()
var debugMode bool
flag.BoolVar(&debugMode, "debug", false, "set to true to run the provider with support for debuggers like delve")
flag.Parse()
muxServer, err := provider.MakeProviderServer(ctx, version)
if err != nil {
log.Fatal(err)
}
var serveOpts []tf5server.ServeOpt
if debugMode {
serveOpts = append(serveOpts, tf5server.WithManagedDebug())
}
err = tf5server.Serve(
"registry.terraform.io/grafana/grafana",
func() tfprotov5.ProviderServer { return muxServer },
serveOpts...,
)
if err != nil {
log.Fatal(err)
}
}