blob: 6b370faf578e47c5e3fcc287cb998f3fca18221d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package main
import (
"flag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
"github.com/microsoft/terraform-provider-azuredevops/azuredevops"
)
func main() {
var debug bool
flag.BoolVar(&debug, "debug", false, "set to true to run the provider with support for debuggers like delve")
flag.Parse()
plugin.Serve(&plugin.ServeOpts{
Debug: debug,
ProviderAddr: "registry.terraform.io/microsoft/azuredevops",
ProviderFunc: func() *schema.Provider {
return azuredevops.Provider()
},
})
}
|