2014-05-24 21:04:43 +02:00
|
|
|
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
|
|
|
|
|
2014-06-27 02:05:21 +02:00
|
|
|
// Ui is the cli.Ui used for communicating to the outside world.
|
|
|
|
var Ui cli.Ui
|
|
|
|
|
2014-06-10 19:28:47 +02:00
|
|
|
const ErrorPrefix = "e:"
|
|
|
|
const OutputPrefix = "o:"
|
|
|
|
|
2014-05-24 21:04:43 +02:00
|
|
|
func init() {
|
2014-06-27 02:05:21 +02:00
|
|
|
Ui = &cli.PrefixedUi{
|
2014-06-10 19:28:47 +02:00
|
|
|
AskPrefix: OutputPrefix,
|
|
|
|
OutputPrefix: OutputPrefix,
|
|
|
|
InfoPrefix: OutputPrefix,
|
|
|
|
ErrorPrefix: ErrorPrefix,
|
|
|
|
Ui: &cli.BasicUi{Writer: os.Stdout},
|
|
|
|
}
|
2014-05-24 21:04:43 +02:00
|
|
|
|
|
|
|
Commands = map[string]cli.CommandFactory{
|
2014-05-24 21:27:58 +02:00
|
|
|
"apply": func() (cli.Command, error) {
|
|
|
|
return &command.ApplyCommand{
|
2014-06-19 01:42:13 +02:00
|
|
|
TFConfig: &TFConfig,
|
2014-06-27 02:05:21 +02:00
|
|
|
Ui: Ui,
|
2014-05-24 21:27:58 +02:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-07-01 19:02:13 +02:00
|
|
|
"graph": func() (cli.Command, error) {
|
|
|
|
return &command.GraphCommand{
|
|
|
|
TFConfig: &TFConfig,
|
|
|
|
Ui: Ui,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-06-20 20:47:02 +02:00
|
|
|
"plan": func() (cli.Command, error) {
|
|
|
|
return &command.PlanCommand{
|
2014-06-09 20:53:41 +02:00
|
|
|
TFConfig: &TFConfig,
|
2014-06-27 02:05:21 +02:00
|
|
|
Ui: Ui,
|
2014-06-09 20:53:41 +02:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-06-27 20:09:01 +02:00
|
|
|
"refresh": func() (cli.Command, error) {
|
|
|
|
return &command.RefreshCommand{
|
|
|
|
TFConfig: &TFConfig,
|
|
|
|
Ui: Ui,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-05-24 21:04:43 +02:00
|
|
|
"version": func() (cli.Command, error) {
|
|
|
|
return &command.VersionCommand{
|
|
|
|
Revision: GitCommit,
|
|
|
|
Version: Version,
|
|
|
|
VersionPrerelease: VersionPrerelease,
|
2014-06-27 02:05:21 +02:00
|
|
|
Ui: Ui,
|
2014-05-24 21:04:43 +02:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|