2020-11-26 00:02:21 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-05-17 17:55:57 +02:00
|
|
|
localexec "github.com/hashicorp/terraform/internal/builtin/provisioners/local-exec"
|
2020-11-26 00:02:21 +01:00
|
|
|
"github.com/hashicorp/terraform/internal/grpcwrap"
|
2021-05-17 21:35:22 +02:00
|
|
|
"github.com/hashicorp/terraform/internal/plugin"
|
2020-11-26 00:02:21 +01:00
|
|
|
"github.com/hashicorp/terraform/internal/tfplugin5"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// Provide a binary version of the internal terraform provider for testing
|
|
|
|
plugin.Serve(&plugin.ServeOpts{
|
|
|
|
GRPCProvisionerFunc: func() tfplugin5.ProvisionerServer {
|
|
|
|
return grpcwrap.Provisioner(localexec.New())
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|