mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-24 11:02:03 -04:00
13 lines
228 B
Go
13 lines
228 B
Go
package main
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/builtin/provisioners/local-exec"
|
|
"github.com/hashicorp/terraform/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin.Serve(&plugin.ServeOpts{
|
|
ProvisionerFunc: localexec.Provisioner,
|
|
})
|
|
}
|