-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.go
30 lines (22 loc) · 890 Bytes
/
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
package main
import (
"context"
"flag"
"github.com/blablacar/terraform-provider-vaultprov/internal/provider"
"github.com/hashicorp/terraform-plugin-framework/providerserver"
"github.com/hashicorp/terraform-plugin-log/tflog"
)
// Provider documentation generation.
//go:generate go run github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs generate --provider-name vaultprov
const providerUrl = "registry.terraform.io/blablacar/vaultprov"
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()
err := providerserver.Serve(context.Background(), provider.New(), providerserver.ServeOpts{
Address: providerUrl,
Debug: debug,
ProtocolVersion: 6,
})
tflog.Error(context.Background(), "error serving provider", map[string]interface{}{"error": err})
}