-
Notifications
You must be signed in to change notification settings - Fork 245
/
main.go
48 lines (39 loc) · 1.31 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
package main
import (
"context"
"flag"
"log"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
"github.com/newrelic/terraform-provider-newrelic/v2/newrelic"
)
var (
// ProviderVersion is set during the release process to the release version of the binary.
// See .goreleaser.yml for more details.
ProviderVersion = "dev"
// UserAgentServiceName can be set via -ldflags and used to customize
// the provider's user agent string in request headers to facilitate
// a better understanding of what additional services may "wrap" our
// provider, such as Pulumi.
UserAgentServiceName = ""
)
func main() {
// We need to set the following package variables in the newrelic package
// to ensure they are properly set as part of the provider's user agent header.
newrelic.ProviderVersion = ProviderVersion
newrelic.UserAgentServiceName = UserAgentServiceName
var debugMode bool
flag.BoolVar(&debugMode, "debuggable", false, "set to true to run the provider with support for debuggers like delve")
flag.Parse()
if debugMode {
err := plugin.Debug(context.Background(), "registry.terraform.io/newrelic/newrelic",
&plugin.ServeOpts{
ProviderFunc: newrelic.Provider,
})
if err != nil {
log.Println(err.Error())
}
} else {
plugin.Serve(&plugin.ServeOpts{
ProviderFunc: newrelic.Provider})
}
}