2017-01-19 05:50:45 +01:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2018-10-18 21:41:05 +02:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"os"
|
2017-01-19 05:50:45 +01:00
|
|
|
"strings"
|
|
|
|
|
2021-05-17 21:07:38 +02:00
|
|
|
"github.com/hashicorp/terraform/internal/command/arguments"
|
|
|
|
"github.com/hashicorp/terraform/internal/command/clistate"
|
|
|
|
"github.com/hashicorp/terraform/internal/command/views"
|
2021-05-17 21:43:35 +02:00
|
|
|
"github.com/hashicorp/terraform/internal/states/statefile"
|
|
|
|
"github.com/hashicorp/terraform/internal/states/statemgr"
|
2017-01-19 05:50:45 +01:00
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StatePushCommand is a Command implementation that shows a single resource.
|
|
|
|
type StatePushCommand struct {
|
2017-03-01 16:10:47 +01:00
|
|
|
Meta
|
2017-01-19 05:50:45 +01:00
|
|
|
StateMeta
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StatePushCommand) Run(args []string) int {
|
2020-04-01 21:01:08 +02:00
|
|
|
args = c.Meta.process(args)
|
2017-01-19 05:50:45 +01:00
|
|
|
var flagForce bool
|
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 22:43:56 +01:00
|
|
|
cmdFlags := c.Meta.ignoreRemoteVersionFlagSet("state push")
|
2017-01-19 05:50:45 +01:00
|
|
|
cmdFlags.BoolVar(&flagForce, "force", false, "")
|
2018-11-21 15:35:27 +01:00
|
|
|
cmdFlags.BoolVar(&c.Meta.stateLock, "lock", true, "lock state")
|
|
|
|
cmdFlags.DurationVar(&c.Meta.stateLockTimeout, "lock-timeout", 0, "lock timeout")
|
2017-01-19 05:50:45 +01:00
|
|
|
if err := cmdFlags.Parse(args); err != nil {
|
2019-08-16 14:31:21 +02:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error parsing command-line flags: %s\n", err.Error()))
|
|
|
|
return 1
|
2017-01-19 05:50:45 +01:00
|
|
|
}
|
|
|
|
args = cmdFlags.Args()
|
|
|
|
|
|
|
|
if len(args) != 1 {
|
2018-10-26 19:08:46 +02:00
|
|
|
c.Ui.Error("Exactly one argument expected.\n")
|
|
|
|
return cli.RunResultHelp
|
2017-01-19 05:50:45 +01:00
|
|
|
}
|
|
|
|
|
2018-10-18 21:41:05 +02:00
|
|
|
// Determine our reader for the input state. This is the filepath
|
|
|
|
// or stdin if "-" is given.
|
|
|
|
var r io.Reader = os.Stdin
|
|
|
|
if args[0] != "-" {
|
|
|
|
f, err := os.Open(args[0])
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(err.Error())
|
|
|
|
return 1
|
|
|
|
}
|
2017-03-01 22:10:48 +01:00
|
|
|
|
2018-10-18 21:41:05 +02:00
|
|
|
// Note: we don't need to defer a Close here because we do a close
|
|
|
|
// automatically below directly after the read.
|
2017-03-01 22:10:48 +01:00
|
|
|
|
2018-10-18 21:41:05 +02:00
|
|
|
r = f
|
|
|
|
}
|
2017-03-01 22:10:48 +01:00
|
|
|
|
2018-10-18 21:41:05 +02:00
|
|
|
// Read the state
|
|
|
|
srcStateFile, err := statefile.Read(r)
|
|
|
|
if c, ok := r.(io.Closer); ok {
|
|
|
|
// Close the reader if possible right now since we're done with it.
|
|
|
|
c.Close()
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error reading source state %q: %s", args[0], err))
|
|
|
|
return 1
|
|
|
|
}
|
2017-01-19 05:50:45 +01:00
|
|
|
|
2018-10-18 21:41:05 +02:00
|
|
|
// Load the backend
|
|
|
|
b, backendDiags := c.Backend(nil)
|
|
|
|
if backendDiags.HasErrors() {
|
|
|
|
c.showDiagnostics(backendDiags)
|
|
|
|
return 1
|
|
|
|
}
|
2017-01-19 05:50:45 +01: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 22:43:56 +01:00
|
|
|
// Determine the workspace name
|
|
|
|
workspace, err := c.Workspace()
|
2020-06-16 18:23:15 +02:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error selecting workspace: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
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 22:43:56 +01:00
|
|
|
|
|
|
|
// Check remote Terraform version is compatible
|
2021-08-24 21:28:12 +02:00
|
|
|
remoteVersionDiags := c.remoteVersionCheck(b, workspace)
|
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 22:43:56 +01:00
|
|
|
c.showDiagnostics(remoteVersionDiags)
|
|
|
|
if remoteVersionDiags.HasErrors() {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the state manager for the currently-selected workspace
|
|
|
|
stateMgr, err := b.StateMgr(workspace)
|
2018-10-18 21:41:05 +02:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to load destination state: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
2018-11-20 09:58:59 +01:00
|
|
|
|
|
|
|
if c.stateLock {
|
2021-02-16 13:19:22 +01:00
|
|
|
stateLocker := clistate.NewLocker(c.stateLockTimeout, views.NewStateLocker(arguments.ViewHuman, c.View))
|
|
|
|
if diags := stateLocker.Lock(stateMgr, "state-push"); diags.HasErrors() {
|
|
|
|
c.showDiagnostics(diags)
|
2018-11-20 09:58:59 +01:00
|
|
|
return 1
|
|
|
|
}
|
2021-02-16 13:19:22 +01:00
|
|
|
defer func() {
|
|
|
|
if diags := stateLocker.Unlock(); diags.HasErrors() {
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
}
|
|
|
|
}()
|
2018-11-20 09:58:59 +01:00
|
|
|
}
|
|
|
|
|
2018-10-18 21:41:05 +02:00
|
|
|
if err := stateMgr.RefreshState(); err != nil {
|
2018-10-22 15:52:53 +02:00
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to refresh destination state: %s", err))
|
2018-10-18 21:41:05 +02:00
|
|
|
return 1
|
|
|
|
}
|
2017-01-19 05:50:45 +01:00
|
|
|
|
2018-11-14 01:48:59 +01:00
|
|
|
if srcStateFile == nil {
|
|
|
|
// We'll push a new empty state instead
|
|
|
|
srcStateFile = statemgr.NewStateFile()
|
2018-10-18 21:41:05 +02:00
|
|
|
}
|
2017-01-19 05:50:45 +01:00
|
|
|
|
2018-11-14 01:48:59 +01:00
|
|
|
// Import it, forcing through the lineage/serial if requested and possible.
|
|
|
|
if err := statemgr.Import(srcStateFile, stateMgr, flagForce); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to write state: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
2018-10-18 21:41:05 +02:00
|
|
|
if err := stateMgr.WriteState(srcStateFile.State); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to write state: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if err := stateMgr.PersistState(); err != nil {
|
2018-10-22 15:52:53 +02:00
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to persist state: %s", err))
|
2018-10-18 21:41:05 +02:00
|
|
|
return 1
|
|
|
|
}
|
2017-01-19 05:50:45 +01:00
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StatePushCommand) Help() string {
|
|
|
|
helpText := `
|
2021-02-22 15:25:56 +01:00
|
|
|
Usage: terraform [global options] state push [options] PATH
|
2017-01-19 05:50:45 +01:00
|
|
|
|
|
|
|
Update remote state from a local state file at PATH.
|
|
|
|
|
|
|
|
This command "pushes" a local state and overwrites remote state
|
|
|
|
with a local state file. The command will protect you against writing
|
|
|
|
an older serial or a different state file lineage unless you specify the
|
|
|
|
"-force" flag.
|
|
|
|
|
|
|
|
This command works with local state (it will overwrite the local
|
|
|
|
state), but is less useful for this use case.
|
|
|
|
|
2017-03-01 22:10:48 +01:00
|
|
|
If PATH is "-", then this command will read the state to push from stdin.
|
|
|
|
Data from stdin is not streamed to the backend: it is loaded completely
|
|
|
|
(until pipe close), verified, and then pushed.
|
|
|
|
|
2017-01-19 05:50:45 +01:00
|
|
|
Options:
|
|
|
|
|
|
|
|
-force Write the state even if lineages don't match or the
|
|
|
|
remote serial is higher.
|
|
|
|
|
2021-05-12 18:05:03 +02:00
|
|
|
-lock=false Don't hold a state lock during the operation. This is
|
|
|
|
dangerous if others might concurrently run commands
|
|
|
|
against the same workspace.
|
2018-11-21 15:35:27 +01:00
|
|
|
|
|
|
|
-lock-timeout=0s Duration to retry a state lock.
|
|
|
|
|
2017-01-19 05:50:45 +01:00
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StatePushCommand) Synopsis() string {
|
|
|
|
return "Update remote state from a local state file"
|
|
|
|
}
|