2014-05-24 21:04:43 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
2014-07-03 02:01:02 +02:00
|
|
|
"os/signal"
|
2014-05-24 21:04:43 +02:00
|
|
|
|
|
|
|
"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
|
2016-03-22 18:41:02 +01:00
|
|
|
var PlumbingCommands map[string]struct{}
|
2014-05-24 21:04:43 +02:00
|
|
|
|
2014-06-27 02:05:21 +02:00
|
|
|
// Ui is the cli.Ui used for communicating to the outside world.
|
|
|
|
var Ui cli.Ui
|
|
|
|
|
2015-02-22 01:04:32 +01:00
|
|
|
const (
|
|
|
|
ErrorPrefix = "e:"
|
|
|
|
OutputPrefix = "o:"
|
|
|
|
)
|
2014-06-10 19:28:47 +02:00
|
|
|
|
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,
|
2016-05-24 22:59:44 +02:00
|
|
|
Ui: &cli.BasicUi{Writer: os.Stdout},
|
2014-06-10 19:28:47 +02:00
|
|
|
}
|
2014-05-24 21:04:43 +02:00
|
|
|
|
2014-07-13 05:38:56 +02:00
|
|
|
meta := command.Meta{
|
2014-07-28 17:56:34 +02:00
|
|
|
Color: true,
|
2014-07-13 05:38:56 +02:00
|
|
|
ContextOpts: &ContextOpts,
|
|
|
|
Ui: Ui,
|
|
|
|
}
|
|
|
|
|
2016-03-22 18:41:02 +01:00
|
|
|
PlumbingCommands = map[string]struct{}{
|
|
|
|
"state": struct{}{}, // includes all subcommands
|
|
|
|
}
|
|
|
|
|
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-07-13 05:38:56 +02:00
|
|
|
Meta: meta,
|
|
|
|
ShutdownCh: makeShutdownCh(),
|
2014-05-24 21:27:58 +02:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-10-01 06:51:45 +02:00
|
|
|
"destroy": func() (cli.Command, error) {
|
|
|
|
return &command.ApplyCommand{
|
|
|
|
Meta: meta,
|
|
|
|
Destroy: true,
|
|
|
|
ShutdownCh: makeShutdownCh(),
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2016-02-02 23:10:22 +01:00
|
|
|
"fmt": func() (cli.Command, error) {
|
|
|
|
return &command.FmtCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-09-22 19:56:50 +02:00
|
|
|
"get": func() (cli.Command, error) {
|
|
|
|
return &command.GetCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-07-01 19:02:13 +02:00
|
|
|
"graph": func() (cli.Command, error) {
|
|
|
|
return &command.GraphCommand{
|
2014-07-13 05:38:56 +02:00
|
|
|
Meta: meta,
|
2014-07-01 19:02:13 +02:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2016-05-04 19:06:16 +02:00
|
|
|
"import": func() (cli.Command, error) {
|
|
|
|
return &command.ImportCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-09-27 21:31:38 +02:00
|
|
|
"init": func() (cli.Command, error) {
|
|
|
|
return &command.InitCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2016-04-05 04:11:11 +02:00
|
|
|
"internal-plugin": func() (cli.Command, error) {
|
|
|
|
return &command.InternalPluginCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-07-13 19:25:42 +02:00
|
|
|
"output": func() (cli.Command, error) {
|
|
|
|
return &command.OutputCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-06-20 20:47:02 +02:00
|
|
|
"plan": func() (cli.Command, error) {
|
|
|
|
return &command.PlanCommand{
|
2014-07-13 05:38:56 +02:00
|
|
|
Meta: meta,
|
2014-06-09 20:53:41 +02:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2015-03-05 05:42:26 +01:00
|
|
|
"push": func() (cli.Command, error) {
|
|
|
|
return &command.PushCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-06-27 20:09:01 +02:00
|
|
|
"refresh": func() (cli.Command, error) {
|
|
|
|
return &command.RefreshCommand{
|
2014-07-13 05:38:56 +02:00
|
|
|
Meta: meta,
|
2014-06-27 20:09:01 +02:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-10-10 00:05:53 +02:00
|
|
|
"remote": func() (cli.Command, error) {
|
|
|
|
return &command.RemoteCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-07-13 04:47:31 +02:00
|
|
|
"show": func() (cli.Command, error) {
|
|
|
|
return &command.ShowCommand{
|
2014-07-13 05:38:56 +02:00
|
|
|
Meta: meta,
|
2014-07-13 04:47:31 +02:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2015-02-26 19:29:51 +01:00
|
|
|
"taint": func() (cli.Command, error) {
|
|
|
|
return &command.TaintCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2015-11-05 15:47:08 +01:00
|
|
|
"validate": func() (cli.Command, error) {
|
|
|
|
return &command.ValidateCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-05-24 21:04:43 +02:00
|
|
|
"version": func() (cli.Command, error) {
|
|
|
|
return &command.VersionCommand{
|
2014-07-13 19:42:18 +02:00
|
|
|
Meta: meta,
|
2014-05-24 21:04:43 +02:00
|
|
|
Revision: GitCommit,
|
|
|
|
Version: Version,
|
|
|
|
VersionPrerelease: VersionPrerelease,
|
2014-10-13 23:05:29 +02:00
|
|
|
CheckFunc: commandVersionCheck,
|
2014-05-24 21:04:43 +02:00
|
|
|
}, nil
|
|
|
|
},
|
2016-03-08 21:37:34 +01:00
|
|
|
|
|
|
|
"untaint": func() (cli.Command, error) {
|
|
|
|
return &command.UntaintCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
2016-03-22 18:41:02 +01:00
|
|
|
|
|
|
|
//-----------------------------------------------------------
|
|
|
|
// Plumbing
|
|
|
|
//-----------------------------------------------------------
|
|
|
|
|
|
|
|
"state": func() (cli.Command, error) {
|
|
|
|
return &command.StateCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
|
|
|
"state list": func() (cli.Command, error) {
|
|
|
|
return &command.StateListCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
2016-03-25 18:17:25 +01:00
|
|
|
|
2016-06-22 10:46:38 +02:00
|
|
|
"state mv": func() (cli.Command, error) {
|
|
|
|
return &command.StateMvCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2016-03-25 18:17:25 +01:00
|
|
|
"state show": func() (cli.Command, error) {
|
|
|
|
return &command.StateShowCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
2014-05-24 21:04:43 +02:00
|
|
|
}
|
|
|
|
}
|
2014-07-03 02:01:02 +02:00
|
|
|
|
|
|
|
// makeShutdownCh creates an interrupt listener and returns a channel.
|
|
|
|
// A message will be sent on the channel for every interrupt received.
|
|
|
|
func makeShutdownCh() <-chan struct{} {
|
|
|
|
resultCh := make(chan struct{})
|
|
|
|
|
|
|
|
signalCh := make(chan os.Signal, 4)
|
|
|
|
signal.Notify(signalCh, os.Interrupt)
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
<-signalCh
|
|
|
|
resultCh <- struct{}{}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return resultCh
|
|
|
|
}
|