-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmain.go
More file actions
26 lines (21 loc) · 583 Bytes
/
main.go
File metadata and controls
26 lines (21 loc) · 583 Bytes
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
package main
import (
"flag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
"github.com/loafoe/terraform-provider-ssh/ssh"
)
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: func() *schema.Provider {
return ssh.Provider()
}}
if debugMode {
opts.Debug = true
opts.ProviderAddr = "registry.terraform.io/loafoe/ssh"
}
plugin.Serve(opts)
}