mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-21 09:00:15 -05:00
11 lines
488 B
Go
11 lines
488 B
Go
|
|
// The plugin package exposes functions and helpers for communicating to
|
||
|
|
// Terraform plugins which are implemented as standalone binary applications.
|
||
|
|
//
|
||
|
|
// plugin.Client fully manages the lifecycle of executing the application,
|
||
|
|
// connecting to it, and returning the RPC client and service names for
|
||
|
|
// connecting to it using the terraform/rpc package.
|
||
|
|
//
|
||
|
|
// plugin.Serve fully manages listeners to expose an RPC server from a binary
|
||
|
|
// that plugin.Client can connect to.
|
||
|
|
package plugin
|