27 lines
545 B
Go
27 lines
545 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/hashicorp/terraform/command"
|
||
|
"github.com/mitchellh/cli"
|
||
|
)
|
||
|
|
||
|
// Commands is the mapping of all the available Terraform commands.
|
||
|
var Commands map[string]cli.CommandFactory
|
||
|
|
||
|
func init() {
|
||
|
ui := &cli.BasicUi{Writer: os.Stdout}
|
||
|
|
||
|
Commands = map[string]cli.CommandFactory{
|
||
|
"version": func() (cli.Command, error) {
|
||
|
return &command.VersionCommand{
|
||
|
Revision: GitCommit,
|
||
|
Version: Version,
|
||
|
VersionPrerelease: VersionPrerelease,
|
||
|
Ui: ui,
|
||
|
}, nil
|
||
|
},
|
||
|
}
|
||
|
}
|