2016-03-31 18:29:39 +02:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2018-10-15 17:38:06 +02:00
|
|
|
"bytes"
|
2016-03-31 18:29:39 +02:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/mitchellh/cli"
|
2018-10-15 17:38:06 +02:00
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/addrs"
|
|
|
|
"github.com/hashicorp/terraform/tfdiags"
|
2016-03-31 18:29:39 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// StateRmCommand is a Command implementation that shows a single resource.
|
|
|
|
type StateRmCommand struct {
|
|
|
|
StateMeta
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StateRmCommand) Run(args []string) int {
|
2017-03-08 05:09:48 +01:00
|
|
|
args, err := c.Meta.process(args, true)
|
|
|
|
if err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
2016-03-31 18:29:39 +02:00
|
|
|
|
|
|
|
cmdFlags := c.Meta.flagSet("state show")
|
2018-10-15 17:38:06 +02:00
|
|
|
var dryRun bool
|
|
|
|
cmdFlags.BoolVar(&dryRun, "dry-run", false, "dry run")
|
2017-07-26 19:08:09 +02:00
|
|
|
cmdFlags.StringVar(&c.backupPath, "backup", "-", "backup")
|
|
|
|
cmdFlags.StringVar(&c.statePath, "state", "", "path")
|
2016-03-31 18:29:39 +02:00
|
|
|
if err := cmdFlags.Parse(args); err != nil {
|
|
|
|
return cli.RunResultHelp
|
|
|
|
}
|
|
|
|
args = cmdFlags.Args()
|
|
|
|
|
2018-10-15 17:38:06 +02:00
|
|
|
var diags tfdiags.Diagnostics
|
|
|
|
|
2017-07-05 23:58:08 +02:00
|
|
|
if len(args) < 1 {
|
|
|
|
c.Ui.Error("At least one resource address is required.")
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2018-10-15 17:38:06 +02:00
|
|
|
stateMgr, err := c.State()
|
2016-03-31 18:29:39 +02:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf(errStateLoadingState, err))
|
2017-07-27 20:10:52 +02:00
|
|
|
return 1
|
2016-03-31 18:29:39 +02:00
|
|
|
}
|
2018-10-15 17:38:06 +02:00
|
|
|
if err := stateMgr.RefreshState(); err != nil {
|
2017-02-22 05:35:43 +01:00
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to load state: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
2016-03-31 18:29:39 +02:00
|
|
|
|
2018-10-15 17:38:06 +02:00
|
|
|
state := stateMgr.State()
|
|
|
|
if state == nil {
|
2016-03-31 18:29:39 +02:00
|
|
|
c.Ui.Error(fmt.Sprintf(errStateNotFound))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2018-10-15 17:38:06 +02:00
|
|
|
toRemove := make([]addrs.AbsResourceInstance, len(args))
|
|
|
|
for i, rawAddr := range args {
|
|
|
|
addr, moreDiags := addrs.ParseAbsResourceInstanceStr(rawAddr)
|
|
|
|
diags = diags.Append(moreDiags)
|
|
|
|
toRemove[i] = addr
|
|
|
|
}
|
|
|
|
if diags.HasErrors() {
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
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
|
|
|
|
2018-10-15 17:38:06 +02:00
|
|
|
// We will first check that all of the instances are present, so we can
|
|
|
|
// either remove all of them successfully or make no change at all.
|
|
|
|
// (If we're in dry run mode, this is also where we print out what
|
|
|
|
// we would've done.)
|
|
|
|
var currentCount, deposedCount int
|
|
|
|
var dryRunBuf bytes.Buffer
|
|
|
|
for _, addr := range toRemove {
|
|
|
|
is := state.ResourceInstance(addr)
|
|
|
|
if is == nil {
|
|
|
|
diags = diags.Append(tfdiags.Sourceless(
|
|
|
|
tfdiags.Error,
|
|
|
|
"No such resource instance in state",
|
|
|
|
fmt.Sprintf("There is no resource instance in the current state with the address %s.", addr),
|
|
|
|
))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if is.Current != nil {
|
|
|
|
currentCount++
|
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
|
|
|
}
|
2018-10-15 17:38:06 +02:00
|
|
|
deposedCount += len(is.Deposed)
|
|
|
|
if dryRun {
|
|
|
|
if is.Current != nil {
|
|
|
|
fmt.Fprintf(&dryRunBuf, "Would remove %s\n", addr)
|
|
|
|
}
|
|
|
|
for k := range is.Deposed {
|
|
|
|
fmt.Fprintf(&dryRunBuf, "Would remove %s deposed object %s\n", addr, k)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if diags.HasErrors() {
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if dryRun {
|
|
|
|
c.Ui.Output(fmt.Sprintf("%s\nWould've removed %d current and %d deposed objects, without -dry-run.", dryRunBuf.String(), currentCount, deposedCount))
|
|
|
|
return 0 // This is as far as we go in dry-run mode
|
|
|
|
}
|
2016-03-31 18:29:39 +02:00
|
|
|
|
2018-10-15 17:38:06 +02:00
|
|
|
// Now we will actually remove them. Due to our validation above, we should
|
|
|
|
// succeed in removing every one.
|
|
|
|
// We'll use the "SyncState" wrapper to do this not because we're doing
|
|
|
|
// any concurrent work here (we aren't) but because it guarantees to clean
|
|
|
|
// up any leftover empty module we might leave behind.
|
|
|
|
ss := state.SyncWrapper()
|
|
|
|
for _, addr := range toRemove {
|
|
|
|
ss.ForgetResourceInstanceAll(addr)
|
|
|
|
}
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case currentCount == 0:
|
|
|
|
c.Ui.Output(fmt.Sprintf("Removed %d deposed objects.", deposedCount))
|
|
|
|
case deposedCount == 0:
|
|
|
|
c.Ui.Output(fmt.Sprintf("Removed %d objects.", currentCount))
|
|
|
|
default:
|
|
|
|
c.Ui.Output(fmt.Sprintf("Removed %d current and %d deposed objects.", currentCount, deposedCount))
|
|
|
|
}
|
2017-09-20 21:48:27 +02:00
|
|
|
|
2018-10-15 17:38:06 +02:00
|
|
|
if err := stateMgr.WriteState(state); err != nil {
|
2016-03-31 18:29:39 +02:00
|
|
|
c.Ui.Error(fmt.Sprintf(errStateRmPersist, err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2018-10-15 17:38:06 +02:00
|
|
|
if err := stateMgr.PersistState(); err != nil {
|
2016-03-31 18:29:39 +02:00
|
|
|
c.Ui.Error(fmt.Sprintf(errStateRmPersist, err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2018-10-15 17:38:06 +02:00
|
|
|
c.Ui.Output("Updated state written successfully.")
|
2016-03-31 18:29:39 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StateRmCommand) Help() string {
|
|
|
|
helpText := `
|
|
|
|
Usage: terraform state rm [options] ADDRESS...
|
|
|
|
|
|
|
|
Remove one or more items from the Terraform state.
|
|
|
|
|
2018-10-15 17:38:06 +02:00
|
|
|
This command removes one or more resource instances from the Terraform state
|
|
|
|
based on the addresses given. You can view and list the available instances
|
2016-03-31 18:29:39 +02:00
|
|
|
with "terraform state list".
|
|
|
|
|
|
|
|
This command creates a timestamped backup of the state on every invocation.
|
|
|
|
This can't be disabled. Due to the destructive nature of this command,
|
|
|
|
the backup is ensured by Terraform for safety reasons.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
2018-10-15 17:38:06 +02:00
|
|
|
-dry-run If set, prints out what would've been removed but
|
|
|
|
doesn't actually remove anything.
|
|
|
|
|
2016-03-31 18:29:39 +02:00
|
|
|
-backup=PATH Path where Terraform should write the backup
|
|
|
|
state. This can't be disabled. If not set, Terraform
|
|
|
|
will write it to the same path as the statefile with
|
2017-06-23 20:46:09 +02:00
|
|
|
a backup extension.
|
2016-03-31 18:29:39 +02:00
|
|
|
|
2017-08-09 20:03:06 +02:00
|
|
|
-state=PATH Path to the source state file. Defaults to the configured
|
|
|
|
backend, or "terraform.tfstate"
|
2016-03-31 18:29:39 +02:00
|
|
|
|
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StateRmCommand) Synopsis() string {
|
2018-10-15 17:38:06 +02:00
|
|
|
return "Remove instances from the state"
|
2016-03-31 18:29:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const errStateRm = `Error removing items from the state: %s
|
|
|
|
|
|
|
|
The state was not saved. No items were removed from the persisted
|
|
|
|
state. No backup was created since no modification occurred. Please
|
|
|
|
resolve the issue above and try again.`
|
|
|
|
|
|
|
|
const errStateRmPersist = `Error saving the state: %s
|
|
|
|
|
|
|
|
The state was not saved. No items were removed from the persisted
|
|
|
|
state. No backup was created since no modification occurred. Please
|
|
|
|
resolve the issue above and try again.`
|