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
|
|
|
|
2017-10-20 02:40:20 +02:00
|
|
|
"github.com/hashicorp/terraform/command"
|
2019-08-30 00:50:03 +02:00
|
|
|
"github.com/hashicorp/terraform/command/webbrowser"
|
2017-10-20 02:40:20 +02:00
|
|
|
pluginDiscovery "github.com/hashicorp/terraform/plugin/discovery"
|
|
|
|
"github.com/hashicorp/terraform/svchost"
|
2017-10-18 17:52:13 +02:00
|
|
|
"github.com/hashicorp/terraform/svchost/auth"
|
|
|
|
"github.com/hashicorp/terraform/svchost/disco"
|
2014-05-24 21:04:43 +02:00
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
2017-09-09 02:14:37 +02:00
|
|
|
// runningInAutomationEnvName gives the name of an environment variable that
|
|
|
|
// can be set to any non-empty value in order to suppress certain messages
|
|
|
|
// that assume that Terraform is being run from a command prompt.
|
|
|
|
const runningInAutomationEnvName = "TF_IN_AUTOMATION"
|
|
|
|
|
2014-05-24 21:04:43 +02:00
|
|
|
// 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
|
|
|
|
|
2019-07-31 01:54:48 +02:00
|
|
|
// PluginOverrides is set from wrappedMain during configuration processing
|
|
|
|
// and then eventually passed to the "command" package to specify alternative
|
|
|
|
// plugin locations via the legacy configuration file mechanism.
|
|
|
|
var PluginOverrides command.PluginOverrides
|
|
|
|
|
2015-02-22 01:04:32 +01:00
|
|
|
const (
|
|
|
|
ErrorPrefix = "e:"
|
|
|
|
OutputPrefix = "o:"
|
|
|
|
)
|
2014-06-10 19:28:47 +02:00
|
|
|
|
2018-07-05 21:28:29 +02:00
|
|
|
func initCommands(config *Config, services *disco.Disco) {
|
2017-09-09 02:14:37 +02:00
|
|
|
var inAutomation bool
|
|
|
|
if v := os.Getenv(runningInAutomationEnvName); v != "" {
|
|
|
|
inAutomation = true
|
|
|
|
}
|
|
|
|
|
2017-10-26 01:00:08 +02:00
|
|
|
for userHost, hostConfig := range config.Hosts {
|
|
|
|
host, err := svchost.ForComparison(userHost)
|
|
|
|
if err != nil {
|
|
|
|
// We expect the config was already validated by the time we get
|
|
|
|
// here, so we'll just ignore invalid hostnames.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
services.ForceHostServices(host, hostConfig.Services)
|
|
|
|
}
|
2017-10-18 17:52:13 +02:00
|
|
|
|
2019-07-09 21:06:20 +02:00
|
|
|
configDir, err := ConfigDir()
|
|
|
|
if err != nil {
|
|
|
|
configDir = "" // No config dir available (e.g. looking up a home directory failed)
|
|
|
|
}
|
|
|
|
|
2017-11-02 00:44:03 +01:00
|
|
|
dataDir := os.Getenv("TF_DATA_DIR")
|
|
|
|
|
2014-07-13 05:38:56 +02:00
|
|
|
meta := command.Meta{
|
2017-04-14 03:05:58 +02:00
|
|
|
Color: true,
|
|
|
|
GlobalPluginDirs: globalPluginDirs(),
|
|
|
|
PluginOverrides: &PluginOverrides,
|
|
|
|
Ui: Ui,
|
2017-09-09 02:14:37 +02:00
|
|
|
|
2019-08-30 00:50:03 +02:00
|
|
|
Services: services,
|
|
|
|
BrowserLauncher: webbrowser.NewNativeLauncher(),
|
2017-10-18 17:52:13 +02:00
|
|
|
|
2017-09-09 02:14:37 +02:00
|
|
|
RunningInAutomation: inAutomation,
|
2019-07-09 21:06:20 +02:00
|
|
|
CLIConfigDir: configDir,
|
2017-09-02 01:20:25 +02:00
|
|
|
PluginCacheDir: config.PluginCacheDir,
|
2017-11-02 00:44:03 +01:00
|
|
|
OverrideDataDir: dataDir,
|
2017-12-01 17:06:39 +01:00
|
|
|
|
|
|
|
ShutdownCh: makeShutdownCh(),
|
2014-07-13 05:38:56 +02:00
|
|
|
}
|
|
|
|
|
2016-11-24 18:22:18 +01:00
|
|
|
// The command list is included in the terraform -help
|
|
|
|
// output, which is in turn included in the docs at
|
|
|
|
// website/source/docs/commands/index.html.markdown; if you
|
|
|
|
// add, remove or reclassify commands then consider updating
|
|
|
|
// that to match.
|
|
|
|
|
2016-03-22 18:41:02 +01:00
|
|
|
PlumbingCommands = map[string]struct{}{
|
2017-04-01 22:06:28 +02:00
|
|
|
"state": struct{}{}, // includes all subcommands
|
|
|
|
"debug": struct{}{}, // includes all subcommands
|
|
|
|
"force-unlock": struct{}{},
|
2018-03-28 18:47:05 +02:00
|
|
|
"push": struct{}{},
|
2018-06-21 04:27:14 +02:00
|
|
|
"0.12upgrade": struct{}{},
|
2016-03-22 18:41:02 +01:00
|
|
|
}
|
|
|
|
|
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{
|
2017-12-01 17:06:39 +01:00
|
|
|
Meta: meta,
|
2014-05-24 21:27:58 +02:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2016-11-14 07:18:18 +01:00
|
|
|
"console": func() (cli.Command, error) {
|
|
|
|
return &command.ConsoleCommand{
|
2017-12-01 17:06:39 +01:00
|
|
|
Meta: meta,
|
2016-11-14 07:18:18 +01:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2014-10-01 06:51:45 +02:00
|
|
|
"destroy": func() (cli.Command, error) {
|
|
|
|
return &command.ApplyCommand{
|
2017-12-01 17:06:39 +01:00
|
|
|
Meta: meta,
|
|
|
|
Destroy: true,
|
2014-10-01 06:51:45 +02:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2017-02-17 00:29:19 +01:00
|
|
|
"env": func() (cli.Command, error) {
|
2017-05-31 00:06:13 +02:00
|
|
|
return &command.WorkspaceCommand{
|
|
|
|
Meta: meta,
|
|
|
|
LegacyName: true,
|
2017-02-17 00:29:19 +01:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2017-02-23 19:13:28 +01:00
|
|
|
"env list": func() (cli.Command, error) {
|
2017-05-31 00:06:13 +02:00
|
|
|
return &command.WorkspaceListCommand{
|
|
|
|
Meta: meta,
|
|
|
|
LegacyName: true,
|
2017-02-23 19:13:28 +01:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
|
|
|
"env select": func() (cli.Command, error) {
|
2017-05-31 00:06:13 +02:00
|
|
|
return &command.WorkspaceSelectCommand{
|
|
|
|
Meta: meta,
|
|
|
|
LegacyName: true,
|
2017-02-23 19:13:28 +01:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
|
|
|
"env new": func() (cli.Command, error) {
|
2017-05-31 00:06:13 +02:00
|
|
|
return &command.WorkspaceNewCommand{
|
|
|
|
Meta: meta,
|
|
|
|
LegacyName: true,
|
2017-02-23 19:13:28 +01:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
|
|
|
"env delete": func() (cli.Command, error) {
|
2017-05-31 00:06:13 +02:00
|
|
|
return &command.WorkspaceDeleteCommand{
|
|
|
|
Meta: meta,
|
|
|
|
LegacyName: true,
|
2017-02-23 19:13:28 +01:00
|
|
|
}, 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
|
|
|
|
},
|
|
|
|
|
2019-07-09 21:06:20 +02:00
|
|
|
"login": func() (cli.Command, error) {
|
|
|
|
return &command.LoginCommand{
|
|
|
|
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
|
|
|
|
},
|
|
|
|
|
2017-04-26 03:10:10 +02:00
|
|
|
"providers": func() (cli.Command, error) {
|
|
|
|
return &command.ProvidersCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2019-02-25 22:32:47 +01:00
|
|
|
"providers schema": func() (cli.Command, error) {
|
|
|
|
return &command.ProvidersSchemaCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, 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-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
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
"workspace": func() (cli.Command, error) {
|
|
|
|
return &command.WorkspaceCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
|
|
|
"workspace list": func() (cli.Command, error) {
|
|
|
|
return &command.WorkspaceListCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
|
|
|
"workspace select": func() (cli.Command, error) {
|
|
|
|
return &command.WorkspaceSelectCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2017-07-05 23:35:46 +02:00
|
|
|
"workspace show": func() (cli.Command, error) {
|
|
|
|
return &command.WorkspaceShowCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
"workspace new": func() (cli.Command, error) {
|
|
|
|
return &command.WorkspaceNewCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
|
|
|
"workspace delete": func() (cli.Command, error) {
|
|
|
|
return &command.WorkspaceDeleteCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2016-03-22 18:41:02 +01:00
|
|
|
//-----------------------------------------------------------
|
|
|
|
// Plumbing
|
|
|
|
//-----------------------------------------------------------
|
|
|
|
|
2018-06-21 04:27:14 +02:00
|
|
|
"0.12upgrade": func() (cli.Command, error) {
|
|
|
|
return &command.ZeroTwelveUpgradeCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2016-11-15 21:33:40 +01:00
|
|
|
"debug": func() (cli.Command, error) {
|
|
|
|
return &command.DebugCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
|
|
|
"debug json2dot": func() (cli.Command, error) {
|
|
|
|
return &command.DebugJSON2DotCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2017-04-01 22:06:28 +02:00
|
|
|
"force-unlock": func() (cli.Command, error) {
|
|
|
|
return &command.UnlockCommand{
|
|
|
|
Meta: meta,
|
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2016-03-22 18:41:02 +01:00
|
|
|
"state": func() (cli.Command, error) {
|
2017-03-01 16:10:47 +01:00
|
|
|
return &command.StateCommand{}, nil
|
2016-03-22 18:41:02 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
"state list": func() (cli.Command, error) {
|
|
|
|
return &command.StateListCommand{
|
2017-03-01 16:10:47 +01:00
|
|
|
Meta: meta,
|
2016-03-22 18:41:02 +01:00
|
|
|
}, nil
|
|
|
|
},
|
2016-03-25 18:17:25 +01:00
|
|
|
|
2016-03-31 18:29:39 +02:00
|
|
|
"state rm": func() (cli.Command, error) {
|
|
|
|
return &command.StateRmCommand{
|
2017-07-27 17:54:14 +02:00
|
|
|
StateMeta: command.StateMeta{
|
|
|
|
Meta: meta,
|
|
|
|
},
|
2016-03-31 18:29:39 +02:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2016-06-22 10:46:38 +02:00
|
|
|
"state mv": func() (cli.Command, error) {
|
|
|
|
return &command.StateMvCommand{
|
2017-07-27 17:54:14 +02:00
|
|
|
StateMeta: command.StateMeta{
|
|
|
|
Meta: meta,
|
|
|
|
},
|
2016-06-22 10:46:38 +02:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2017-01-19 05:51:06 +01:00
|
|
|
"state pull": func() (cli.Command, error) {
|
|
|
|
return &command.StatePullCommand{
|
2017-03-01 16:10:47 +01:00
|
|
|
Meta: meta,
|
2017-01-19 05:51:06 +01:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
|
|
|
"state push": func() (cli.Command, error) {
|
|
|
|
return &command.StatePushCommand{
|
2017-03-01 16:10:47 +01:00
|
|
|
Meta: meta,
|
2017-01-19 05:51:06 +01:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
|
2016-03-25 18:17:25 +01:00
|
|
|
"state show": func() (cli.Command, error) {
|
|
|
|
return &command.StateShowCommand{
|
2017-03-01 16:10:47 +01:00
|
|
|
Meta: meta,
|
2016-03-25 18:17:25 +01:00
|
|
|
}, 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)
|
2016-12-08 18:10:52 +01:00
|
|
|
signal.Notify(signalCh, ignoreSignals...)
|
|
|
|
signal.Notify(signalCh, forwardSignals...)
|
2014-07-03 02:01:02 +02:00
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
<-signalCh
|
|
|
|
resultCh <- struct{}{}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return resultCh
|
|
|
|
}
|
2017-10-20 02:40:20 +02:00
|
|
|
|
2019-08-09 02:08:49 +02:00
|
|
|
func credentialsSource(config *Config) (auth.CredentialsSource, error) {
|
|
|
|
helperPlugins := pluginDiscovery.FindPlugins("credentials", globalPluginDirs())
|
|
|
|
return config.CredentialsSource(helperPlugins)
|
2017-10-20 02:40:20 +02:00
|
|
|
}
|