mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
36d0a50427
This is part of a general effort to move all of Terraform's non-library package surface under internal in order to reinforce that these are for internal use within Terraform only. If you were previously importing packages under this prefix into an external codebase, you could pin to an earlier release tag as an interim solution until you've make a plan to achieve the same functionality some other way.
53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
package plugin
|
|
|
|
import (
|
|
"context"
|
|
"net/rpc"
|
|
|
|
"github.com/hashicorp/go-plugin"
|
|
"github.com/hashicorp/terraform/internal/terraform"
|
|
)
|
|
|
|
// UIInput is an implementation of terraform.UIInput that communicates
|
|
// over RPC.
|
|
type UIInput struct {
|
|
Client *rpc.Client
|
|
}
|
|
|
|
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 {
|
|
return "", err
|
|
}
|
|
if resp.Error != nil {
|
|
err = resp.Error
|
|
return "", err
|
|
}
|
|
|
|
return resp.Value, nil
|
|
}
|
|
|
|
type UIInputInputResponse struct {
|
|
Value string
|
|
Error *plugin.BasicError
|
|
}
|
|
|
|
// UIInputServer is a net/rpc compatible structure for serving
|
|
// a UIInputServer. This should not be used directly.
|
|
type UIInputServer struct {
|
|
UIInput terraform.UIInput
|
|
}
|
|
|
|
func (s *UIInputServer) Input(
|
|
opts *terraform.InputOpts,
|
|
reply *UIInputInputResponse) error {
|
|
value, err := s.UIInput.Input(context.Background(), opts)
|
|
*reply = UIInputInputResponse{
|
|
Value: value,
|
|
Error: plugin.NewBasicError(err),
|
|
}
|
|
|
|
return nil
|
|
}
|