Skip to content

Instantly share code, notes, and snippets.

@MoimHossain
Created October 8, 2019 05:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MoimHossain/3562f862fbe37549db9d7faf984e3a1e to your computer and use it in GitHub Desktop.
Save MoimHossain/3562f862fbe37549db9d7faf984e3a1e to your computer and use it in GitHub Desktop.
package main
import (
"github.com/hashicorp/terraform/plugin"
"github.com/hashicorp/terraform/terraform"
)
func main() {
plugin.Serve(&plugin.ServeOpts{
ProviderFunc: func() terraform.ResourceProvider {
return Provider()
},
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment