Remove unused internal/provider-terraform folder

This commit is contained in:
RLRabinowitz 2023-08-27 14:42:38 +03:00
parent 6e0908d53f
commit b6d4ac7d62
2 changed files with 1 additions and 21 deletions

View File

@ -25,7 +25,7 @@ var ReservedProviderFields = []string{
//
// By defining a schema for the configuration of the provider, the
// map of supporting resources, and a configuration function, the schema
// framework takes over and handles all the provider operations for you.
// framework takes over and handles all the pro1vider operations for you.
//
// After defining the provider structure, it is unlikely that you'll require any
// of the methods on Provider itself.

View File

@ -1,20 +0,0 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package main
import (
"github.com/placeholderplaceholderplaceholder/opentf/internal/builtin/providers/terraform"
"github.com/placeholderplaceholderplaceholder/opentf/internal/grpcwrap"
"github.com/placeholderplaceholderplaceholder/opentf/internal/plugin"
"github.com/placeholderplaceholderplaceholder/opentf/internal/tfplugin5"
)
func main() {
// Provide a binary version of the internal terraform provider for testing
plugin.Serve(&plugin.ServeOpts{
GRPCProviderFunc: func() tfplugin5.ProviderServer {
return grpcwrap.Provider(terraform.NewProvider())
},
})
}