2014-07-13 04:47:31 +02:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ShowCommand is a Command implementation that reads and outputs the
|
|
|
|
// contents of a Terraform plan or state file.
|
|
|
|
type ShowCommand struct {
|
2014-07-13 05:21:46 +02:00
|
|
|
Meta
|
2014-07-13 04:47:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ShowCommand) Run(args []string) int {
|
2014-09-26 04:25:10 +02:00
|
|
|
var moduleDepth int
|
|
|
|
|
2014-08-05 18:32:01 +02:00
|
|
|
args = c.Meta.process(args, false)
|
2014-07-13 05:21:46 +02:00
|
|
|
|
2014-07-13 04:47:31 +02:00
|
|
|
cmdFlags := flag.NewFlagSet("show", flag.ContinueOnError)
|
2014-09-26 04:25:10 +02:00
|
|
|
cmdFlags.IntVar(&moduleDepth, "module-depth", 0, "module-depth")
|
2014-07-13 04:47:31 +02:00
|
|
|
cmdFlags.Usage = func() { c.Ui.Error(c.Help()) }
|
|
|
|
if err := cmdFlags.Parse(args); err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
args = cmdFlags.Args()
|
|
|
|
if len(args) != 1 {
|
|
|
|
c.Ui.Error(
|
|
|
|
"The show command expects exactly one argument with the path\n" +
|
|
|
|
"to a Terraform state or plan file.\n")
|
|
|
|
cmdFlags.Usage()
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
path := args[0]
|
|
|
|
|
|
|
|
var plan *terraform.Plan
|
|
|
|
var state *terraform.State
|
|
|
|
|
|
|
|
f, err := os.Open(path)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error loading file: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
var planErr, stateErr error
|
|
|
|
plan, err = terraform.ReadPlan(f)
|
|
|
|
if err != nil {
|
|
|
|
if _, err := f.Seek(0, 0); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error reading file: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
plan = nil
|
|
|
|
planErr = err
|
|
|
|
}
|
|
|
|
if plan == nil {
|
|
|
|
state, err = terraform.ReadState(f)
|
|
|
|
if err != nil {
|
|
|
|
stateErr = err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if plan == nil && state == nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf(
|
|
|
|
"Terraform couldn't read the given file as a state or plan file.\n"+
|
|
|
|
"The errors while attempting to read the file as each format are\n"+
|
|
|
|
"shown below.\n\n"+
|
|
|
|
"State read error: %s\n\nPlan read error: %s",
|
|
|
|
stateErr,
|
|
|
|
planErr))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if plan != nil {
|
2014-09-25 07:54:51 +02:00
|
|
|
c.Ui.Output(FormatPlan(&FormatPlanOpts{
|
2014-09-26 04:25:10 +02:00
|
|
|
Plan: plan,
|
|
|
|
Color: c.Colorize(),
|
|
|
|
ModuleDepth: moduleDepth,
|
2014-09-25 07:54:51 +02:00
|
|
|
}))
|
2014-07-13 04:47:31 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2014-09-26 04:25:10 +02:00
|
|
|
c.Ui.Output(FormatState(&FormatStateOpts{
|
|
|
|
State: state,
|
|
|
|
Color: c.Colorize(),
|
|
|
|
ModuleDepth: moduleDepth,
|
|
|
|
}))
|
2014-07-13 04:47:31 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ShowCommand) Help() string {
|
|
|
|
helpText := `
|
|
|
|
Usage: terraform show [options] path
|
|
|
|
|
|
|
|
Reads and outputs a Terraform state or plan file in a human-readable
|
|
|
|
form.
|
|
|
|
|
2014-07-13 05:21:46 +02:00
|
|
|
Options:
|
|
|
|
|
2014-09-26 04:25:10 +02:00
|
|
|
-module-depth=n Specifies the depth of modules to show in the output.
|
|
|
|
By default this is zero. -1 will expand all.
|
|
|
|
|
|
|
|
-no-color If specified, output won't contain any color.
|
2014-07-13 05:21:46 +02:00
|
|
|
|
2014-07-13 04:47:31 +02:00
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ShowCommand) Synopsis() string {
|
|
|
|
return "Inspect Terraform state or plan"
|
|
|
|
}
|