mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-20 23:00:34 -05:00
Provisioner plugins were the last remaining use of the legacy netrpc plugin interface (even though it was wrapped in shimmed into the grpc protocol). Now that these types are no longer being used, we can remove the old code from the plugin package entirely.
13 lines
206 B
Go
13 lines
206 B
Go
package plugin
|
|
|
|
import (
|
|
"github.com/hashicorp/go-plugin"
|
|
)
|
|
|
|
var VersionedPlugins = map[int]plugin.PluginSet{
|
|
5: {
|
|
"provider": &GRPCProviderPlugin{},
|
|
"provisioner": &GRPCProvisionerPlugin{},
|
|
},
|
|
}
|