2016-01-25 03:10:52 +01:00
|
|
|
package plugin
|
2014-10-04 18:11:51 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/rpc"
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
)
|
|
|
|
|
|
|
|
// UIOutput is an implementatin of terraform.UIOutput that communicates
|
|
|
|
// over RPC.
|
|
|
|
type UIOutput struct {
|
|
|
|
Client *rpc.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *UIOutput) Output(v string) {
|
2016-01-25 03:10:52 +01:00
|
|
|
o.Client.Call("Plugin.Output", v, new(interface{}))
|
2014-10-04 18:11:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|