2016-03-22 18:41:02 +01:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StateListCommand is a Command implementation that lists the resources
|
|
|
|
// within a state file.
|
|
|
|
type StateListCommand struct {
|
2017-03-01 16:10:47 +01:00
|
|
|
Meta
|
2017-02-28 19:13:03 +01:00
|
|
|
StateMeta
|
2016-03-22 18:41:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StateListCommand) 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-22 18:41:02 +01:00
|
|
|
|
|
|
|
cmdFlags := c.Meta.flagSet("state list")
|
|
|
|
cmdFlags.StringVar(&c.Meta.statePath, "state", DefaultStateFilename, "path")
|
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
|
|
|
//lookupId := cmdFlags.String("id", "", "Restrict output to paths with a resource having the specified ID.")
|
2016-03-22 18:41:02 +01:00
|
|
|
if err := cmdFlags.Parse(args); err != nil {
|
|
|
|
return cli.RunResultHelp
|
|
|
|
}
|
|
|
|
args = cmdFlags.Args()
|
|
|
|
|
2017-01-19 05:50:45 +01:00
|
|
|
// Load the backend
|
2018-03-28 00:31:05 +02:00
|
|
|
b, backendDiags := c.Backend(nil)
|
|
|
|
if backendDiags.HasErrors() {
|
|
|
|
c.showDiagnostics(backendDiags)
|
2017-01-19 05:50:45 +01:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-05-31 02:13:43 +02:00
|
|
|
env := c.Workspace()
|
2017-01-19 05:50:45 +01:00
|
|
|
// Get the state
|
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
|
|
|
state, err := b.StateMgr(env)
|
2017-01-19 05:50:45 +01:00
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to load state: %s", err))
|
|
|
|
return 1
|
2016-03-22 18:41:02 +01:00
|
|
|
}
|
|
|
|
|
2017-02-22 05:35:43 +01:00
|
|
|
if err := state.RefreshState(); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to load state: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2016-03-22 18:41:02 +01:00
|
|
|
stateReal := state.State()
|
|
|
|
if stateReal == nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf(errStateNotFound))
|
|
|
|
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
|
|
|
// FIXME: update this for the new state types
|
|
|
|
c.Ui.Error("state list command not yet updated for new state types")
|
|
|
|
return 1
|
|
|
|
|
|
|
|
/*filter := &terraform.StateFilter{State: stateReal}
|
2016-03-22 18:41:02 +01:00
|
|
|
results, err := filter.Filter(args...)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf(errStateFilter, err))
|
|
|
|
return cli.RunResultHelp
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, result := range results {
|
2018-02-26 19:54:48 +01:00
|
|
|
if i, ok := result.Value.(*terraform.InstanceState); ok {
|
|
|
|
if *lookupId == "" || i.ID == *lookupId {
|
|
|
|
c.Ui.Output(result.Address)
|
|
|
|
}
|
2016-03-22 18:41:02 +01:00
|
|
|
}
|
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
|
|
|
}*/
|
2016-03-22 18:41:02 +01:00
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StateListCommand) Help() string {
|
|
|
|
helpText := `
|
2016-03-22 18:41:02 +01:00
|
|
|
Usage: terraform state list [options] [pattern...]
|
2016-03-22 18:41:02 +01:00
|
|
|
|
|
|
|
List resources in the Terraform state.
|
|
|
|
|
2016-03-22 18:41:02 +01:00
|
|
|
This command lists resources in the Terraform state. The pattern argument
|
|
|
|
can be used to filter the resources by resource or module. If no pattern
|
2016-03-22 18:41:02 +01:00
|
|
|
is given, all resources are listed.
|
|
|
|
|
2016-03-22 18:41:02 +01:00
|
|
|
The pattern argument is meant to provide very simple filtering. For
|
2016-03-22 18:41:02 +01:00
|
|
|
advanced filtering, please use tools such as "grep". The output of this
|
|
|
|
command is designed to be friendly for this usage.
|
|
|
|
|
2016-03-22 18:41:02 +01:00
|
|
|
The pattern argument accepts any resource targeting syntax. Please
|
2016-03-22 18:41:02 +01:00
|
|
|
refer to the documentation on resource targeting syntax for more
|
|
|
|
information.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-state=statefile Path to a Terraform state file to use to look
|
|
|
|
up Terraform-managed resources. By default it will
|
|
|
|
use the state "terraform.tfstate" if it exists.
|
|
|
|
|
2018-02-26 19:54:48 +01:00
|
|
|
-id=ID Restricts the output to objects whose id is ID.
|
|
|
|
|
2016-03-22 18:41:02 +01:00
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StateListCommand) Synopsis() string {
|
|
|
|
return "List resources in the state"
|
|
|
|
}
|
|
|
|
|
|
|
|
const errStateFilter = `Error filtering state: %[1]s
|
|
|
|
|
|
|
|
Please ensure that all your addresses are formatted properly.`
|
|
|
|
|
|
|
|
const errStateLoadingState = `Error loading the state: %[1]s
|
|
|
|
|
|
|
|
Please ensure that your Terraform state exists and that you've
|
|
|
|
configured it properly. You can use the "-state" flag to point
|
|
|
|
Terraform at another state file.`
|
|
|
|
|
|
|
|
const errStateNotFound = `No state file was found!
|
|
|
|
|
|
|
|
State management commands require a state file. Run this command
|
|
|
|
in a directory where Terraform has been run or use the -state flag
|
|
|
|
to point the command to a specific state location.`
|