2024-02-08 03:48:59 -06:00
|
|
|
// Copyright (c) The OpenTofu Authors
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
2023-05-02 10:33:06 -05:00
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2017-02-23 12:13:28 -06:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/mitchellh/cli"
|
2017-09-25 21:02:12 -05:00
|
|
|
"github.com/posener/complete"
|
2023-08-24 03:56:05 -05:00
|
|
|
|
2023-09-20 06:35:35 -05:00
|
|
|
"github.com/opentofu/opentofu/internal/tfdiags"
|
2017-02-23 12:13:28 -06:00
|
|
|
)
|
|
|
|
|
2017-05-30 17:06:13 -05:00
|
|
|
type WorkspaceSelectCommand struct {
|
2017-02-23 12:13:28 -06:00
|
|
|
Meta
|
2017-05-30 17:06:13 -05:00
|
|
|
LegacyName bool
|
2017-02-23 12:13:28 -06:00
|
|
|
}
|
|
|
|
|
2017-05-30 17:06:13 -05:00
|
|
|
func (c *WorkspaceSelectCommand) Run(args []string) int {
|
2020-04-01 14:01:08 -05:00
|
|
|
args = c.Meta.process(args)
|
2017-05-30 17:06:13 -05:00
|
|
|
envCommandShowWarning(c.Ui, c.LegacyName)
|
|
|
|
|
2022-08-12 08:14:52 -05:00
|
|
|
var orCreate bool
|
2018-11-21 08:35:27 -06:00
|
|
|
cmdFlags := c.Meta.defaultFlagSet("workspace select")
|
2024-06-24 08:13:07 -05:00
|
|
|
c.Meta.varFlagSet(cmdFlags)
|
2022-12-16 14:03:46 -06:00
|
|
|
cmdFlags.BoolVar(&orCreate, "or-create", false, "create workspace if it does not exist")
|
2017-02-23 12:13:28 -06:00
|
|
|
cmdFlags.Usage = func() { c.Ui.Error(c.Help()) }
|
|
|
|
if err := cmdFlags.Parse(args); err != nil {
|
2019-08-16 07:31:21 -05:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error parsing command-line flags: %s\n", err.Error()))
|
2017-02-23 12:13:28 -06:00
|
|
|
return 1
|
|
|
|
}
|
2018-11-21 08:35:27 -06:00
|
|
|
|
2017-02-23 12:13:28 -06:00
|
|
|
args = cmdFlags.Args()
|
2021-02-02 09:35:45 -06:00
|
|
|
if len(args) != 1 {
|
2017-03-01 14:59:40 -06:00
|
|
|
c.Ui.Error("Expected a single argument: NAME.\n")
|
2017-02-23 12:13:28 -06:00
|
|
|
return cli.RunResultHelp
|
|
|
|
}
|
|
|
|
|
2023-09-29 04:23:50 -05:00
|
|
|
configPath, err := modulePath(args[1:])
|
2017-02-23 13:14:51 -06:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2018-03-27 17:31:05 -05:00
|
|
|
var diags tfdiags.Diagnostics
|
|
|
|
|
|
|
|
backendConfig, backendDiags := c.loadBackendConfig(configPath)
|
|
|
|
diags = diags.Append(backendDiags)
|
|
|
|
if diags.HasErrors() {
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
return 1
|
2017-05-12 15:53:29 -05:00
|
|
|
}
|
|
|
|
|
2017-05-30 19:13:43 -05:00
|
|
|
current, isOverridden := c.WorkspaceOverridden()
|
2017-05-12 15:53:29 -05:00
|
|
|
if isOverridden {
|
|
|
|
c.Ui.Error(envIsOverriddenSelectError)
|
2017-05-01 16:47:53 -05:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2024-03-07 07:55:57 -06:00
|
|
|
// Load the encryption configuration
|
|
|
|
enc, encDiags := c.EncryptionFromPath(configPath)
|
|
|
|
diags = diags.Append(encDiags)
|
|
|
|
if encDiags.HasErrors() {
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-02-23 12:13:28 -06:00
|
|
|
// Load the backend
|
2018-03-27 17:31:05 -05:00
|
|
|
b, backendDiags := c.Backend(&BackendOpts{
|
|
|
|
Config: backendConfig,
|
2024-03-13 09:58:52 -05:00
|
|
|
}, enc.State())
|
2018-03-27 17:31:05 -05:00
|
|
|
diags = diags.Append(backendDiags)
|
|
|
|
if backendDiags.HasErrors() {
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
return 1
|
|
|
|
}
|
2017-05-01 16:47:53 -05:00
|
|
|
|
backend: Validate remote backend Terraform version
When using the enhanced remote backend, a subset of all Terraform
operations are supported. Of these, only plan and apply can be executed
on the remote infrastructure (e.g. Terraform Cloud). Other operations
run locally and use the remote backend for state storage.
This causes problems when the local version of Terraform does not match
the configured version from the remote workspace. If the two versions
are incompatible, an `import` or `state mv` operation can cause the
remote workspace to be unusable until a manual fix is applied.
To prevent this from happening accidentally, this commit introduces a
check that the local Terraform version and the configured remote
workspace Terraform version are compatible. This check is skipped for
commands which do not write state, and can also be disabled by the use
of a new command-line flag, `-ignore-remote-version`.
Terraform version compatibility is defined as:
- For all releases before 0.14.0, local must exactly equal remote, as
two different versions cannot share state;
- 0.14.0 to 1.0.x are compatible, as we will not change the state
version number until at least Terraform 1.1.0;
- Versions after 1.1.0 must have the same major and minor versions, as
we will not change the state version number in a patch release.
If the two versions are incompatible, a diagnostic is displayed,
advising that the error can be suppressed with `-ignore-remote-version`.
When this flag is used, the diagnostic is still displayed, but as a
warning instead of an error.
Commands which will not write state can assert this fact by calling the
helper `meta.ignoreRemoteBackendVersionConflict`, which will disable the
checks. Those which can write state should instead call the helper
`meta.remoteBackendVersionCheck`, which will return diagnostics for
display.
In addition to these explicit paths for managing the version check, we
have an implicit check in the remote backend's state manager
initialization method. Both of the above helpers will disable this
check. This fallback is in place to ensure that future code paths which
access state cannot accidentally skip the remote version check.
2020-11-13 15:43:56 -06:00
|
|
|
// This command will not write state
|
2021-08-24 14:28:12 -05:00
|
|
|
c.ignoreRemoteVersionConflict(b)
|
backend: Validate remote backend Terraform version
When using the enhanced remote backend, a subset of all Terraform
operations are supported. Of these, only plan and apply can be executed
on the remote infrastructure (e.g. Terraform Cloud). Other operations
run locally and use the remote backend for state storage.
This causes problems when the local version of Terraform does not match
the configured version from the remote workspace. If the two versions
are incompatible, an `import` or `state mv` operation can cause the
remote workspace to be unusable until a manual fix is applied.
To prevent this from happening accidentally, this commit introduces a
check that the local Terraform version and the configured remote
workspace Terraform version are compatible. This check is skipped for
commands which do not write state, and can also be disabled by the use
of a new command-line flag, `-ignore-remote-version`.
Terraform version compatibility is defined as:
- For all releases before 0.14.0, local must exactly equal remote, as
two different versions cannot share state;
- 0.14.0 to 1.0.x are compatible, as we will not change the state
version number until at least Terraform 1.1.0;
- Versions after 1.1.0 must have the same major and minor versions, as
we will not change the state version number in a patch release.
If the two versions are incompatible, a diagnostic is displayed,
advising that the error can be suppressed with `-ignore-remote-version`.
When this flag is used, the diagnostic is still displayed, but as a
warning instead of an error.
Commands which will not write state can assert this fact by calling the
helper `meta.ignoreRemoteBackendVersionConflict`, which will disable the
checks. Those which can write state should instead call the helper
`meta.remoteBackendVersionCheck`, which will return diagnostics for
display.
In addition to these explicit paths for managing the version check, we
have an implicit check in the remote backend's state manager
initialization method. Both of the above helpers will disable this
check. This fallback is in place to ensure that future code paths which
access state cannot accidentally skip the remote version check.
2020-11-13 15:43:56 -06:00
|
|
|
|
2017-02-23 12:13:28 -06:00
|
|
|
name := args[0]
|
2017-05-30 19:13:43 -05:00
|
|
|
if !validWorkspaceName(name) {
|
2017-03-27 15:16:09 -05:00
|
|
|
c.Ui.Error(fmt.Sprintf(envInvalidName, name))
|
|
|
|
return 1
|
|
|
|
}
|
2017-02-23 12:13:28 -06:00
|
|
|
|
2023-11-08 15:09:14 -06:00
|
|
|
states, err := b.Workspaces()
|
2017-02-23 12:13:28 -06:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-05-12 15:53:29 -05:00
|
|
|
if name == current {
|
2017-05-30 17:06:13 -05:00
|
|
|
// already using this workspace
|
2017-02-23 12:13:28 -06:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
found := false
|
|
|
|
for _, s := range states {
|
|
|
|
if name == s {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-31 12:28:28 -05:00
|
|
|
var newState bool
|
|
|
|
|
2017-02-23 12:13:28 -06:00
|
|
|
if !found {
|
2022-08-12 08:14:52 -05:00
|
|
|
if orCreate {
|
2023-11-08 15:09:14 -06:00
|
|
|
_, err = b.StateMgr(name)
|
2022-08-12 08:14:52 -05:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
2022-08-31 12:28:28 -05:00
|
|
|
newState = true
|
2022-08-12 08:14:52 -05:00
|
|
|
} else {
|
|
|
|
c.Ui.Error(fmt.Sprintf(envDoesNotExist, name))
|
|
|
|
return 1
|
|
|
|
}
|
2017-02-23 12:13:28 -06:00
|
|
|
}
|
|
|
|
|
2017-05-30 19:13:43 -05:00
|
|
|
err = c.SetWorkspace(name)
|
2017-02-23 12:13:28 -06:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2022-08-31 12:28:28 -05:00
|
|
|
if newState {
|
|
|
|
c.Ui.Output(c.Colorize().Color(fmt.Sprintf(
|
|
|
|
strings.TrimSpace(envCreated), name)))
|
|
|
|
} else {
|
|
|
|
c.Ui.Output(
|
|
|
|
c.Colorize().Color(
|
|
|
|
fmt.Sprintf(envChanged, name),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
2017-02-23 12:13:28 -06:00
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2017-09-25 21:02:12 -05:00
|
|
|
func (c *WorkspaceSelectCommand) AutocompleteArgs() complete.Predictor {
|
|
|
|
return completePredictSequence{
|
|
|
|
c.completePredictWorkspaceName(),
|
|
|
|
complete.PredictDirs(""),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *WorkspaceSelectCommand) AutocompleteFlags() complete.Flags {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-05-30 17:06:13 -05:00
|
|
|
func (c *WorkspaceSelectCommand) Help() string {
|
2017-02-23 12:13:28 -06:00
|
|
|
helpText := `
|
2024-07-24 08:27:07 -05:00
|
|
|
Usage: tofu [global options] workspace select [options] NAME
|
2017-02-23 12:13:28 -06:00
|
|
|
|
2023-09-21 07:38:46 -05:00
|
|
|
Select a different OpenTofu workspace.
|
2018-11-21 08:35:27 -06:00
|
|
|
|
2022-08-31 12:28:28 -05:00
|
|
|
Options:
|
|
|
|
|
2023-09-21 07:38:46 -05:00
|
|
|
-or-create=false Create the OpenTofu workspace if it doesn't exist.
|
2022-08-31 12:28:28 -05:00
|
|
|
|
2024-07-11 10:00:18 -05:00
|
|
|
-var 'foo=bar' Set a value for one of the input variables in the root
|
|
|
|
module of the configuration. Use this option more than
|
|
|
|
once to set more than one variable.
|
|
|
|
|
|
|
|
-var-file=filename Load variable values from the given file, in addition
|
|
|
|
to the default files terraform.tfvars and *.auto.tfvars.
|
|
|
|
Use this option more than once to include more than one
|
|
|
|
variables file.
|
2017-02-23 12:13:28 -06:00
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
2017-05-30 17:06:13 -05:00
|
|
|
func (c *WorkspaceSelectCommand) Synopsis() string {
|
|
|
|
return "Select a workspace"
|
2017-02-23 12:13:28 -06:00
|
|
|
}
|