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"
|
2018-11-21 15:35:27 +01:00
|
|
|
"time"
|
2017-02-23 19:13:28 +01:00
|
|
|
|
2017-04-01 20:58:19 +02:00
|
|
|
"github.com/hashicorp/terraform/command/clistate"
|
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
|
|
|
"github.com/hashicorp/terraform/states/statefile"
|
2018-03-28 00:31:05 +02:00
|
|
|
"github.com/hashicorp/terraform/tfdiags"
|
2017-02-23 19:13:28 +01:00
|
|
|
"github.com/mitchellh/cli"
|
2017-09-26 04:02:12 +02:00
|
|
|
"github.com/posener/complete"
|
2017-02-23 19:13:28 +01:00
|
|
|
)
|
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
type WorkspaceNewCommand struct {
|
2017-02-23 19:13:28 +01:00
|
|
|
Meta
|
2017-05-31 00:06:13 +02:00
|
|
|
LegacyName bool
|
2017-02-23 19:13:28 +01:00
|
|
|
}
|
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
func (c *WorkspaceNewCommand) Run(args []string) int {
|
2017-03-08 05:09:48 +01:00
|
|
|
args, err := c.Meta.process(args, true)
|
|
|
|
if err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
2017-02-23 19:13:28 +01:00
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
envCommandShowWarning(c.Ui, c.LegacyName)
|
|
|
|
|
2018-11-21 15:35:27 +01:00
|
|
|
var stateLock bool
|
|
|
|
var stateLockTimeout time.Duration
|
|
|
|
var statePath string
|
|
|
|
cmdFlags := c.Meta.defaultFlagSet("workspace new")
|
|
|
|
cmdFlags.BoolVar(&stateLock, "lock", true, "lock state")
|
|
|
|
cmdFlags.DurationVar(&stateLockTimeout, "lock-timeout", 0, "lock timeout")
|
2017-02-23 19:13:28 +01:00
|
|
|
cmdFlags.StringVar(&statePath, "state", "", "terraform state file")
|
|
|
|
cmdFlags.Usage = func() { c.Ui.Error(c.Help()) }
|
|
|
|
if err := cmdFlags.Parse(args); err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
2018-11-21 15:35:27 +01:00
|
|
|
|
2017-02-23 19:13:28 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2018-11-21 15:35:27 +01:00
|
|
|
workspace := args[0]
|
2017-02-23 19:13:28 +01:00
|
|
|
|
2018-11-21 15:35:27 +01:00
|
|
|
if !validWorkspaceName(workspace) {
|
|
|
|
c.Ui.Error(fmt.Sprintf(envInvalidName, workspace))
|
2017-03-27 22:16:09 +02:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
// You can't ask to create a workspace when you're overriding the
|
|
|
|
// workspace name to be something different.
|
2018-11-21 15:35:27 +01:00
|
|
|
if current, isOverridden := c.WorkspaceOverridden(); current != workspace && isOverridden {
|
2017-05-12 22:53:29 +02:00
|
|
|
c.Ui.Error(envIsOverriddenNewError)
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2018-03-28 00:31:05 +02:00
|
|
|
var diags tfdiags.Diagnostics
|
|
|
|
|
|
|
|
backendConfig, backendDiags := c.loadBackendConfig(configPath)
|
|
|
|
diags = diags.Append(backendDiags)
|
|
|
|
if diags.HasErrors() {
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
return 1
|
2017-05-01 23:47:53 +02:00
|
|
|
}
|
|
|
|
|
2017-02-23 19:13:28 +01:00
|
|
|
// Load the backend
|
2018-03-28 00:31:05 +02:00
|
|
|
b, backendDiags := c.Backend(&BackendOpts{
|
|
|
|
Config: backendConfig,
|
2017-05-01 23:47:53 +02:00
|
|
|
})
|
2018-03-28 00:31:05 +02:00
|
|
|
diags = diags.Append(backendDiags)
|
|
|
|
if backendDiags.HasErrors() {
|
|
|
|
c.showDiagnostics(diags)
|
2017-02-23 19:13:28 +01:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2018-11-21 15:35:27 +01:00
|
|
|
workspaces, err := b.Workspaces()
|
2017-07-11 17:01:02 +02:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to get configured named states: %s", err))
|
2017-07-20 00:46:21 +02:00
|
|
|
return 1
|
2017-07-11 17:01:02 +02:00
|
|
|
}
|
2018-11-21 15:35:27 +01:00
|
|
|
for _, ws := range workspaces {
|
|
|
|
if workspace == ws {
|
|
|
|
c.Ui.Error(fmt.Sprintf(envExists, workspace))
|
2017-02-23 19:13:28 +01:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-21 15:35:27 +01:00
|
|
|
_, err = b.StateMgr(workspace)
|
2017-02-23 19:13:28 +01:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
// now set the current workspace locally
|
2018-11-21 15:35:27 +01:00
|
|
|
if err := c.SetWorkspace(workspace); err != nil {
|
2017-05-31 00:06:13 +02:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error selecting new workspace: %s", err))
|
2017-02-28 19:13:03 +01:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-03-01 21:59:40 +01:00
|
|
|
c.Ui.Output(c.Colorize().Color(fmt.Sprintf(
|
2018-11-21 15:35:27 +01:00
|
|
|
strings.TrimSpace(envCreated), workspace)))
|
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
|
2018-11-21 15:35:27 +01:00
|
|
|
stateMgr, err := b.StateMgr(workspace)
|
2017-02-23 19:13:28 +01:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2018-11-21 15:35:27 +01:00
|
|
|
if stateLock {
|
|
|
|
stateLocker := clistate.NewLocker(context.Background(), stateLockTimeout, c.Ui, c.Colorize())
|
|
|
|
if err := stateLocker.Lock(stateMgr, "workspace_new"); err != nil {
|
2017-04-01 21:42:13 +02:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error locking state: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
2018-02-23 17:28:47 +01:00
|
|
|
defer stateLocker.Unlock(nil)
|
2017-02-23 19:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// read the existing state file
|
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
|
|
|
f, err := os.Open(statePath)
|
2017-02-23 19:13:28 +01:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
|
|
|
stateFile, err := statefile.Read(f)
|
2017-02-23 19:13:28 +01:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// save the existing state in the new Backend.
|
2018-11-21 15:35:27 +01:00
|
|
|
err = stateMgr.WriteState(stateFile.State)
|
2017-02-23 19:13:28 +01:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
2018-11-21 15:35:27 +01:00
|
|
|
err = stateMgr.PersistState()
|
2017-04-12 19:42:23 +02:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
2017-02-23 19:13:28 +01:00
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2017-09-26 04:02:12 +02:00
|
|
|
func (c *WorkspaceNewCommand) AutocompleteArgs() complete.Predictor {
|
|
|
|
return completePredictSequence{
|
|
|
|
complete.PredictNothing, // the "new" subcommand itself (already matched)
|
|
|
|
complete.PredictAnything,
|
|
|
|
complete.PredictDirs(""),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *WorkspaceNewCommand) AutocompleteFlags() complete.Flags {
|
|
|
|
return complete.Flags{
|
|
|
|
"-state": complete.PredictFiles("*.tfstate"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
func (c *WorkspaceNewCommand) Help() string {
|
2017-02-23 19:13:28 +01:00
|
|
|
helpText := `
|
2017-05-31 00:06:13 +02:00
|
|
|
Usage: terraform workspace new [OPTIONS] NAME [DIR]
|
2017-02-23 19:13:28 +01:00
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
Create a new Terraform workspace.
|
2017-02-23 19:13:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
2018-11-21 15:35:27 +01:00
|
|
|
-lock=true Lock the state file when locking is supported.
|
|
|
|
|
|
|
|
-lock-timeout=0s Duration to retry a state lock.
|
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
-state=path Copy an existing state file into the new workspace.
|
2018-11-21 15:35:27 +01:00
|
|
|
|
2017-02-23 19:13:28 +01:00
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
2017-05-31 00:06:13 +02:00
|
|
|
func (c *WorkspaceNewCommand) Synopsis() string {
|
|
|
|
return "Create a new workspace"
|
2017-02-23 19:13:28 +01:00
|
|
|
}
|