mirror of
https://github.com/outbackdingo/terraform-provider-matchbox.git
synced 2026-01-27 10:20:39 +00:00
* Tests require terraform CLI (v0.12.26+) * https://www.terraform.io/docs/extend/guides/v2-upgrade-guide.html
14 lines
230 B
Go
14 lines
230 B
Go
package main
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
|
|
|
|
"github.com/poseidon/terraform-provider-matchbox/matchbox"
|
|
)
|
|
|
|
func main() {
|
|
plugin.Serve(&plugin.ServeOpts{
|
|
ProviderFunc: matchbox.Provider,
|
|
})
|
|
}
|