forked from hashicorp/terraform-provider-azurerm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
62 lines (50 loc) · 1.58 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
54
55
56
57
58
59
60
61
62
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package main
import (
"context"
"flag"
"log"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
"github.com/hashicorp/terraform-provider-azurerm/internal/features"
"github.com/hashicorp/terraform-provider-azurerm/internal/provider"
"github.com/hashicorp/terraform-plugin-go/tfprotov5/tf5server"
"github.com/hashicorp/terraform-provider-azurerm/internal/provider/framework"
)
func main() {
// remove date and time stamp from log output as the plugin SDK already adds its own
log.SetFlags(log.Flags() &^ (log.Ldate | log.Ltime))
var debugMode bool
flag.BoolVar(&debugMode, "debuggable", false, "set to true to run the provider with support for debuggers like delve")
flag.Parse()
ctx := context.Background()
if features.FourPointOhBeta() {
providerServer, _, err := framework.ProtoV5ProviderServerFactory(ctx)
if err != nil {
log.Fatalf("creating AzureRM Provider Server: %+v", err)
}
var serveOpts []tf5server.ServeOpt
if debugMode {
serveOpts = append(serveOpts, tf5server.WithManagedDebug())
}
err = tf5server.Serve("registry.terraform.io/hashicorp/azurerm", providerServer, serveOpts...)
if err != nil {
log.Fatal(err)
}
} else {
if debugMode {
//nolint:staticcheck
err := plugin.Debug(context.Background(), "registry.terraform.io/hashicorp/azurerm",
&plugin.ServeOpts{
ProviderFunc: provider.AzureProvider,
})
if err != nil {
log.Println(err.Error())
}
} else {
plugin.Serve(&plugin.ServeOpts{
ProviderFunc: provider.AzureProvider,
})
}
}
}