2020-11-20 00:37:04 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/terraform/builtin/providers/terraform"
|
|
|
|
"github.com/hashicorp/terraform/internal/grpcwrap"
|
|
|
|
"github.com/hashicorp/terraform/internal/tfplugin5"
|
|
|
|
"github.com/hashicorp/terraform/plugin"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// Provide a binary version of the internal terraform provider for testing
|
|
|
|
plugin.Serve(&plugin.ServeOpts{
|
|
|
|
GRPCProviderFunc: func() tfplugin5.ProviderServer {
|
2020-11-26 00:02:21 +01:00
|
|
|
return grpcwrap.Provider(terraform.NewProvider())
|
2020-11-20 00:37:04 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|