Add configuration items

This commit is contained in:
Alexis Sellier 2016-10-04 16:28:43 +02:00
parent 6790c2c86f
commit 76b9caefc6
3 changed files with 71 additions and 0 deletions

12
main.go Normal file
View file

@ -0,0 +1,12 @@
package main
import (
"github.com/hashicorp/terraform/plugin"
"github.com/AlexisSellier/terraform-provider-croc/croc"
)
func main() {
plugin.Serve(&plugin.ServeOpts{
ProviderFunc: croc.Provider,
})
}