2014-05-24 21:27:58 +02:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2014-06-19 01:42:13 +02:00
|
|
|
"flag"
|
|
|
|
"fmt"
|
2014-06-19 06:36:44 +02:00
|
|
|
"os"
|
2014-05-24 21:27:58 +02:00
|
|
|
"strings"
|
|
|
|
|
2014-06-19 01:42:13 +02:00
|
|
|
"github.com/hashicorp/terraform/terraform"
|
2014-05-24 21:27:58 +02:00
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ApplyCommand is a Command implementation that applies a Terraform
|
|
|
|
// configuration and actually builds or changes infrastructure.
|
|
|
|
type ApplyCommand struct {
|
2014-06-19 01:42:13 +02:00
|
|
|
TFConfig *terraform.Config
|
|
|
|
Ui cli.Ui
|
2014-05-24 21:27:58 +02:00
|
|
|
}
|
|
|
|
|
2014-06-19 01:42:13 +02:00
|
|
|
func (c *ApplyCommand) Run(args []string) int {
|
2014-06-19 21:12:24 +02:00
|
|
|
var init bool
|
2014-06-27 23:43:23 +02:00
|
|
|
var stateOutPath string
|
2014-06-19 06:36:44 +02:00
|
|
|
|
2014-06-19 01:42:13 +02:00
|
|
|
cmdFlags := flag.NewFlagSet("apply", flag.ContinueOnError)
|
2014-06-19 21:12:24 +02:00
|
|
|
cmdFlags.BoolVar(&init, "init", false, "init")
|
2014-06-27 23:43:23 +02:00
|
|
|
cmdFlags.StringVar(&stateOutPath, "out", "", "path")
|
2014-06-19 01:42:13 +02:00
|
|
|
cmdFlags.Usage = func() { c.Ui.Error(c.Help()) }
|
|
|
|
if err := cmdFlags.Parse(args); err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
args = cmdFlags.Args()
|
2014-06-27 23:43:23 +02:00
|
|
|
if len(args) != 2 {
|
|
|
|
c.Ui.Error("The apply command expects two arguments.\n")
|
2014-06-19 01:42:13 +02:00
|
|
|
cmdFlags.Usage()
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-06-27 23:43:23 +02:00
|
|
|
statePath := args[0]
|
|
|
|
configPath := args[1]
|
|
|
|
|
2014-06-19 06:36:44 +02:00
|
|
|
if stateOutPath == "" {
|
|
|
|
stateOutPath = statePath
|
|
|
|
}
|
2014-06-19 01:42:13 +02:00
|
|
|
|
2014-06-27 23:43:23 +02:00
|
|
|
// Initialize Terraform right away
|
2014-06-27 07:13:54 +02:00
|
|
|
c.TFConfig.Hooks = append(c.TFConfig.Hooks, &UiHook{Ui: c.Ui})
|
2014-06-26 03:22:42 +02:00
|
|
|
tf, err := terraform.New(c.TFConfig)
|
2014-06-19 01:42:13 +02:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error initializing Terraform: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-06-27 23:43:23 +02:00
|
|
|
// Attempt to read a plan from the path given. This is how we test that
|
|
|
|
// it is a plan or not (kind of jank, but if it quacks like a duck...)
|
2014-07-01 19:02:13 +02:00
|
|
|
planStatePath := statePath
|
|
|
|
if init {
|
|
|
|
planStatePath = ""
|
2014-06-27 23:43:23 +02:00
|
|
|
}
|
2014-07-01 19:02:13 +02:00
|
|
|
plan, err := PlanArg(configPath, planStatePath, tf)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
2014-06-19 01:42:13 +02:00
|
|
|
}
|
|
|
|
|
2014-06-27 23:43:23 +02:00
|
|
|
state, err := tf.Apply(plan)
|
2014-06-19 01:42:13 +02:00
|
|
|
if err != nil {
|
2014-06-20 20:47:02 +02:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error applying plan: %s", err))
|
2014-06-19 01:42:13 +02:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-06-19 06:36:44 +02:00
|
|
|
// Write state out to the file
|
2014-07-01 19:02:13 +02:00
|
|
|
f, err := os.Create(stateOutPath)
|
2014-06-27 23:43:23 +02:00
|
|
|
if err == nil {
|
|
|
|
err = terraform.WriteState(state, f)
|
|
|
|
f.Close()
|
2014-06-19 06:36:44 +02:00
|
|
|
}
|
2014-06-27 23:43:23 +02:00
|
|
|
if err != nil {
|
2014-06-19 06:36:44 +02:00
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to save state: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2014-06-19 01:42:13 +02:00
|
|
|
c.Ui.Output(strings.TrimSpace(state.String()))
|
|
|
|
|
2014-05-24 21:27:58 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ApplyCommand) Help() string {
|
|
|
|
helpText := `
|
2014-06-27 23:43:23 +02:00
|
|
|
Usage: terraform apply [options] STATE PATH
|
2014-05-24 21:27:58 +02:00
|
|
|
|
|
|
|
Builds or changes infrastructure according to the Terraform configuration
|
|
|
|
file.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
2014-06-19 06:36:44 +02:00
|
|
|
-init If specified, it is okay to build brand new
|
|
|
|
infrastructure (with no state file specified).
|
|
|
|
|
2014-06-27 23:43:23 +02:00
|
|
|
-out=file.tfstate Path to save the new state. If not specified, the
|
|
|
|
state path argument will be used.
|
2014-05-24 21:27:58 +02:00
|
|
|
|
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ApplyCommand) Synopsis() string {
|
2014-06-27 23:43:23 +02:00
|
|
|
return "Builds or changes infrastructure"
|
|
|
|
}
|