25 lines
677 B
Go
25 lines
677 B
Go
|
package plugin
|
||
|
|
||
|
import (
|
||
|
"os/exec"
|
||
|
|
||
|
plugin "github.com/hashicorp/go-plugin"
|
||
|
"github.com/hashicorp/terraform/plugin/discovery"
|
||
|
)
|
||
|
|
||
|
// ClientConfig returns a configuration object that can be used to instantiate
|
||
|
// a client for the plugin described by the given metadata.
|
||
|
func ClientConfig(m discovery.PluginMeta) *plugin.ClientConfig {
|
||
|
return &plugin.ClientConfig{
|
||
|
Cmd: exec.Command(m.Path),
|
||
|
HandshakeConfig: Handshake,
|
||
|
Managed: true,
|
||
|
Plugins: PluginMap,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Client returns a plugin client for the plugin described by the given metadata.
|
||
|
func Client(m discovery.PluginMeta) *plugin.Client {
|
||
|
return plugin.NewClient(ClientConfig(m))
|
||
|
}
|