You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/plugin/plugin.go

15 lines
243 B

package plugin
import (
"github.com/hashicorp/go-plugin"
)
// See serve.go for serving plugins
var VersionedPlugins = map[int]plugin.PluginSet{
5: {
"provider": &GRPCProviderPlugin{},
"provisioner": &GRPCProvisionerPlugin{},
},
}