|
|
|
|
@ -1,19 +1,20 @@
|
|
|
|
|
package plugin
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"net/rpc"
|
|
|
|
|
|
|
|
|
|
"github.com/hashicorp/go-plugin"
|
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// UIInput is an implementatin of terraform.UIInput that communicates
|
|
|
|
|
// UIInput is an implementation of terraform.UIInput that communicates
|
|
|
|
|
// over RPC.
|
|
|
|
|
type UIInput struct {
|
|
|
|
|
Client *rpc.Client
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (i *UIInput) Input(opts *terraform.InputOpts) (string, error) {
|
|
|
|
|
func (i *UIInput) Input(ctx context.Context, opts *terraform.InputOpts) (string, error) {
|
|
|
|
|
var resp UIInputInputResponse
|
|
|
|
|
err := i.Client.Call("Plugin.Input", opts, &resp)
|
|
|
|
|
if err != nil {
|
|
|
|
|
@ -41,7 +42,7 @@ type UIInputServer struct {
|
|
|
|
|
func (s *UIInputServer) Input(
|
|
|
|
|
opts *terraform.InputOpts,
|
|
|
|
|
reply *UIInputInputResponse) error {
|
|
|
|
|
value, err := s.UIInput.Input(opts)
|
|
|
|
|
value, err := s.UIInput.Input(context.Background(), opts)
|
|
|
|
|
*reply = UIInputInputResponse{
|
|
|
|
|
Value: value,
|
|
|
|
|
Error: plugin.NewBasicError(err),
|
|
|
|
|
|