mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-05 09:01:44 -04:00
* Rename module name from "github.com/hashicorp/terraform" to "github.com/placeholderplaceholderplaceholder/opentf". Signed-off-by: Jakub Martin <kubam@spacelift.io> * Gofmt. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Regenerate protobuf. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Fix comments. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Undo issue and pull request link changes. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Undo comment changes. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Fix comment. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Undo some link changes. Signed-off-by: Jakub Martin <kubam@spacelift.io> * make generate && make protobuf Signed-off-by: Jakub Martin <kubam@spacelift.io> --------- Signed-off-by: Jakub Martin <kubam@spacelift.io>
33 lines
637 B
Go
33 lines
637 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package plugin
|
|
|
|
import (
|
|
"net/rpc"
|
|
|
|
"github.com/placeholderplaceholderplaceholder/opentf/internal/terraform"
|
|
)
|
|
|
|
// UIOutput is an implementatin of terraform.UIOutput that communicates
|
|
// over RPC.
|
|
type UIOutput struct {
|
|
Client *rpc.Client
|
|
}
|
|
|
|
func (o *UIOutput) Output(v string) {
|
|
o.Client.Call("Plugin.Output", v, new(interface{}))
|
|
}
|
|
|
|
// UIOutputServer is the RPC server for serving UIOutput.
|
|
type UIOutputServer struct {
|
|
UIOutput terraform.UIOutput
|
|
}
|
|
|
|
func (s *UIOutputServer) Output(
|
|
v string,
|
|
reply *interface{}) error {
|
|
s.UIOutput.Output(v)
|
|
return nil
|
|
}
|