mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-15 19:22:46 -06:00
653db95df7
First pass at loading the config data using the TF schema. Signed-off-by: Nolan Davidson <ndavidson@chef.io>
13 lines
223 B
Go
13 lines
223 B
Go
package main
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/builtin/provisioners/habitat"
|
|
"github.com/hashicorp/terraform/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin.Serve(&plugin.ServeOpts{
|
|
ProvisionerFunc: habitat.Provisioner,
|
|
})
|
|
}
|