forked from phillbaker/terraform-provider-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.go
42 lines (30 loc) · 828 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
31
32
33
34
35
36
37
38
39
40
41
42
/*
Package main create Elasticsearch provider for Terraform
Read the doc to use it: https://github.com/disaster37/terraform-provider-elasticsearch/tree/7.x
*/
package main
import (
"flag"
"os"
"github.com/disaster37/terraform-provider-elasticsearch/v8/es"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
log "github.com/sirupsen/logrus"
easy "github.com/t-tomalak/logrus-easy-formatter"
)
func init() {
log.SetOutput(os.Stderr)
log.SetLevel(log.DebugLevel)
log.SetFormatter(&easy.Formatter{
LogFormat: "[%lvl%] %msg%\n",
})
}
func main() {
var debugMode bool
flag.BoolVar(&debugMode, "debug", false, "set to true to run the provider with support for debuggers like delve")
flag.Parse()
opts := &plugin.ServeOpts{
ProviderFunc: es.Provider,
Debug: debugMode,
}
plugin.Serve(opts)
}