2020-11-20 00:37:04 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-05-17 17:55:57 +02:00
|
|
|
"github.com/hashicorp/terraform/internal/builtin/providers/terraform"
|
2020-11-20 00:37:04 +01:00
|
|
|
"github.com/hashicorp/terraform/internal/grpcwrap"
|
2021-05-17 21:35:22 +02:00
|
|
|
"github.com/hashicorp/terraform/internal/plugin"
|
2020-11-20 00:37:04 +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{
|
|
|
|
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
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|