Skip to content

Commit

Permalink
Merge pull request #1868 from svanharmelen/f-chef-client-provisioner
Browse files Browse the repository at this point in the history
New provisioner for Chef-Client
  • Loading branch information
Sander van Harmelen committed May 12, 2015
2 parents c7a6a4f + 11314a3 commit 4e0aa33
Show file tree
Hide file tree
Showing 16 changed files with 1,547 additions and 6 deletions.
15 changes: 15 additions & 0 deletions builtin/bins/provisioner-chef/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package main

import (
"github.com/hashicorp/terraform/builtin/provisioners/chef"
"github.com/hashicorp/terraform/plugin"
"github.com/hashicorp/terraform/terraform"
)

func main() {
plugin.Serve(&plugin.ServeOpts{
ProvisionerFunc: func() terraform.ResourceProvisioner {
return new(chef.ResourceProvisioner)
},
})
}
1 change: 1 addition & 0 deletions builtin/bins/provisioner-chef/main_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package main
Loading

0 comments on commit 4e0aa33

Please sign in to comment.