2017-02-23 19:13:28 +01:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2017-04-01 21:42:13 +02:00
|
|
|
"context"
|
2017-02-23 19:13:28 +01:00
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
|
2017-04-01 20:58:19 +02:00
|
|
|
"github.com/hashicorp/terraform/command/clistate"
|
2017-02-23 19:13:28 +01:00
|
|
|
"github.com/hashicorp/terraform/state"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
type EnvNewCommand struct {
|
|
|
|
Meta
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *EnvNewCommand) Run(args []string) int {
|
|
|
|
args = c.Meta.process(args, true)
|
|
|
|
|
|
|
|
statePath := ""
|
|
|
|
|
|
|
|
cmdFlags := c.Meta.flagSet("env new")
|
|
|
|
cmdFlags.StringVar(&statePath, "state", "", "terraform state file")
|
|
|
|
cmdFlags.Usage = func() { c.Ui.Error(c.Help()) }
|
|
|
|
if err := cmdFlags.Parse(args); err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
args = cmdFlags.Args()
|
2017-02-23 20:14:51 +01:00
|
|
|
if len(args) == 0 {
|
2017-03-01 21:59:40 +01:00
|
|
|
c.Ui.Error("Expected a single argument: NAME.\n")
|
2017-02-23 19:13:28 +01:00
|
|
|
return cli.RunResultHelp
|
|
|
|
}
|
|
|
|
|
|
|
|
newEnv := args[0]
|
|
|
|
|
2017-03-27 22:16:09 +02:00
|
|
|
if !validEnvName(newEnv) {
|
|
|
|
c.Ui.Error(fmt.Sprintf(envInvalidName, newEnv))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-02-23 20:14:51 +01:00
|
|
|
configPath, err := ModulePath(args[1:])
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-02-23 19:13:28 +01:00
|
|
|
// Load the backend
|
2017-02-23 20:14:51 +01:00
|
|
|
b, err := c.Backend(&BackendOpts{ConfigPath: configPath})
|
2017-02-23 19:13:28 +01:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to load backend: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-02-28 19:13:03 +01:00
|
|
|
states, err := b.States()
|
2017-02-23 19:13:28 +01:00
|
|
|
for _, s := range states {
|
|
|
|
if newEnv == s {
|
|
|
|
c.Ui.Error(fmt.Sprintf(envExists, newEnv))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-28 19:13:03 +01:00
|
|
|
_, err = b.State(newEnv)
|
2017-02-23 19:13:28 +01:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-02-28 19:13:03 +01:00
|
|
|
// now save the current env locally
|
|
|
|
if err := c.SetEnv(newEnv); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("error saving new environment name: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-03-01 21:59:40 +01:00
|
|
|
c.Ui.Output(c.Colorize().Color(fmt.Sprintf(
|
|
|
|
strings.TrimSpace(envCreated), newEnv)))
|
2017-02-23 19:13:28 +01:00
|
|
|
|
|
|
|
if statePath == "" {
|
|
|
|
// if we're not loading a state, then we're done
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// load the new Backend state
|
2017-02-28 19:13:03 +01:00
|
|
|
sMgr, err := b.State(newEnv)
|
2017-02-23 19:13:28 +01:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-04-01 21:42:13 +02:00
|
|
|
if c.stateLock {
|
|
|
|
lockCtx, cancel := context.WithTimeout(context.Background(), c.stateLockTimeout)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
// Lock the state if we can
|
|
|
|
lockInfo := state.NewLockInfo()
|
|
|
|
lockInfo.Operation = "env new"
|
|
|
|
lockID, err := clistate.Lock(lockCtx, sMgr, lockInfo, c.Ui, c.Colorize())
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error locking state: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
defer clistate.Unlock(sMgr, lockID, c.Ui, c.Colorize())
|
2017-02-23 19:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// read the existing state file
|
|
|
|
stateFile, err := os.Open(statePath)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
s, err := terraform.ReadState(stateFile)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// save the existing state in the new Backend.
|
|
|
|
err = sMgr.WriteState(s)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *EnvNewCommand) Help() string {
|
|
|
|
helpText := `
|
2017-02-23 20:14:51 +01:00
|
|
|
Usage: terraform env new [OPTIONS] NAME [DIR]
|
2017-02-23 19:13:28 +01:00
|
|
|
|
|
|
|
Create a new Terraform environment.
|
|
|
|
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-state=path Copy an existing state file into the new environment.
|
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *EnvNewCommand) Synopsis() string {
|
|
|
|
return "Create a new environment"
|
|
|
|
}
|