2014-07-13 19:25:42 +02:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2016-04-11 19:40:06 +02:00
|
|
|
"bytes"
|
2016-07-13 18:38:19 +02:00
|
|
|
"encoding/json"
|
2014-07-13 19:25:42 +02:00
|
|
|
"flag"
|
|
|
|
"fmt"
|
2015-06-26 01:20:12 +02:00
|
|
|
"sort"
|
2014-07-13 19:25:42 +02:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
// OutputCommand is a Command implementation that reads an output
|
|
|
|
// from a Terraform state and prints it.
|
|
|
|
type OutputCommand struct {
|
|
|
|
Meta
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *OutputCommand) Run(args []string) int {
|
2017-03-08 05:09:48 +01:00
|
|
|
args, err := c.Meta.process(args, false)
|
|
|
|
if err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
2014-07-13 19:25:42 +02:00
|
|
|
|
2015-05-27 16:46:12 +02:00
|
|
|
var module string
|
2016-07-13 18:38:19 +02:00
|
|
|
var jsonOutput bool
|
2014-07-13 19:25:42 +02:00
|
|
|
cmdFlags := flag.NewFlagSet("output", flag.ContinueOnError)
|
2016-07-13 18:38:19 +02:00
|
|
|
cmdFlags.BoolVar(&jsonOutput, "json", false, "json")
|
2014-10-12 03:26:06 +02:00
|
|
|
cmdFlags.StringVar(&c.Meta.statePath, "state", DefaultStateFilename, "path")
|
2015-05-27 16:46:12 +02:00
|
|
|
cmdFlags.StringVar(&module, "module", "", "module")
|
2014-07-13 19:25:42 +02:00
|
|
|
cmdFlags.Usage = func() { c.Ui.Error(c.Help()) }
|
|
|
|
if err := cmdFlags.Parse(args); err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
args = cmdFlags.Args()
|
2016-07-13 18:38:19 +02:00
|
|
|
if len(args) > 1 {
|
2014-07-13 19:25:42 +02:00
|
|
|
c.Ui.Error(
|
|
|
|
"The output command expects exactly one argument with the name\n" +
|
2015-06-26 01:20:12 +02:00
|
|
|
"of an output variable or no arguments to show all outputs.\n")
|
2014-07-13 19:25:42 +02:00
|
|
|
cmdFlags.Usage()
|
|
|
|
return 1
|
|
|
|
}
|
2015-06-26 01:20:12 +02:00
|
|
|
|
|
|
|
name := ""
|
|
|
|
if len(args) > 0 {
|
|
|
|
name = args[0]
|
|
|
|
}
|
2014-07-13 19:25:42 +02:00
|
|
|
|
2017-01-19 05:50:45 +01:00
|
|
|
// Load the backend
|
|
|
|
b, err := c.Backend(nil)
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to load backend: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-05-31 02:13:43 +02:00
|
|
|
env := c.Workspace()
|
2017-02-28 19:13:03 +01:00
|
|
|
|
2017-01-19 05:50:45 +01:00
|
|
|
// Get the state
|
2017-02-28 19:13:03 +01:00
|
|
|
stateStore, err := b.State(env)
|
2014-07-13 19:25:42 +02:00
|
|
|
if err != nil {
|
2017-01-19 05:50:45 +01:00
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to load state: %s", err))
|
2014-07-13 19:25:42 +02:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-02-17 03:44:43 +01:00
|
|
|
if err := stateStore.RefreshState(); err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Failed to load state: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2015-05-27 16:46:12 +02:00
|
|
|
if module == "" {
|
|
|
|
module = "root"
|
|
|
|
} else {
|
|
|
|
module = "root." + module
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the proper module we want to get outputs for
|
|
|
|
modPath := strings.Split(module, ".")
|
|
|
|
|
2015-02-22 01:04:32 +01:00
|
|
|
state := stateStore.State()
|
2015-05-27 16:46:12 +02:00
|
|
|
mod := state.ModuleByPath(modPath)
|
|
|
|
if mod == nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf(
|
2015-06-03 16:24:20 +02:00
|
|
|
"The module %s could not be found. There is nothing to output.",
|
2015-05-27 16:46:12 +02:00
|
|
|
module))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
if state.Empty() || len(mod.Outputs) == 0 {
|
2017-02-01 00:20:11 +01:00
|
|
|
c.Ui.Error(
|
|
|
|
"The state file either has no outputs defined, or all the defined\n" +
|
|
|
|
"outputs are empty. Please define an output in your configuration\n" +
|
|
|
|
"with the `output` keyword and run `terraform refresh` for it to\n" +
|
|
|
|
"become available. If you are using interpolation, please verify\n" +
|
|
|
|
"the interpolated value is not empty. You can use the \n" +
|
|
|
|
"`terraform console` command to assist.")
|
2014-07-13 19:25:42 +02:00
|
|
|
return 1
|
|
|
|
}
|
2015-05-27 16:46:12 +02:00
|
|
|
|
2015-06-26 01:20:12 +02:00
|
|
|
if name == "" {
|
2016-07-13 18:38:19 +02:00
|
|
|
if jsonOutput {
|
|
|
|
jsonOutputs, err := json.MarshalIndent(mod.Outputs, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Ui.Output(string(jsonOutputs))
|
|
|
|
return 0
|
|
|
|
} else {
|
2016-07-29 21:13:50 +02:00
|
|
|
c.Ui.Output(outputsAsString(state, modPath, nil, false))
|
2016-07-13 18:38:19 +02:00
|
|
|
return 0
|
|
|
|
}
|
2015-06-26 01:20:12 +02:00
|
|
|
}
|
|
|
|
|
2015-05-27 16:46:12 +02:00
|
|
|
v, ok := mod.Outputs[name]
|
2014-07-13 19:25:42 +02:00
|
|
|
if !ok {
|
|
|
|
c.Ui.Error(fmt.Sprintf(
|
|
|
|
"The output variable requested could not be found in the state\n" +
|
|
|
|
"file. If you recently added this to your configuration, be\n" +
|
|
|
|
"sure to run `terraform apply`, since the state won't be updated\n" +
|
|
|
|
"with new output variables until that command is run."))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2016-07-13 18:38:19 +02:00
|
|
|
if jsonOutput {
|
|
|
|
jsonOutputs, err := json.MarshalIndent(v, "", " ")
|
2016-04-11 19:40:06 +02:00
|
|
|
if err != nil {
|
2016-07-13 18:38:19 +02:00
|
|
|
return 1
|
2016-04-11 19:40:06 +02:00
|
|
|
}
|
|
|
|
|
2016-07-13 18:38:19 +02:00
|
|
|
c.Ui.Output(string(jsonOutputs))
|
|
|
|
} else {
|
|
|
|
switch output := v.Value.(type) {
|
2016-07-12 18:35:44 +02:00
|
|
|
case string:
|
2016-07-13 18:38:19 +02:00
|
|
|
c.Ui.Output(output)
|
|
|
|
return 0
|
2016-07-12 18:35:44 +02:00
|
|
|
case []interface{}:
|
2016-07-13 18:38:19 +02:00
|
|
|
c.Ui.Output(formatListOutput("", "", output))
|
|
|
|
return 0
|
2016-07-12 18:35:44 +02:00
|
|
|
case map[string]interface{}:
|
2016-04-11 19:40:06 +02:00
|
|
|
c.Ui.Output(formatMapOutput("", "", output))
|
|
|
|
return 0
|
2016-07-13 18:38:19 +02:00
|
|
|
default:
|
|
|
|
c.Ui.Error(fmt.Sprintf("Unknown output type: %T", v.Type))
|
2016-04-11 19:40:06 +02:00
|
|
|
return 1
|
|
|
|
}
|
2016-03-22 15:22:33 +01:00
|
|
|
}
|
|
|
|
|
2014-07-13 19:25:42 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2016-07-12 18:35:44 +02:00
|
|
|
func formatNestedList(indent string, outputList []interface{}) string {
|
|
|
|
outputBuf := new(bytes.Buffer)
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("%s[", indent))
|
|
|
|
|
|
|
|
lastIdx := len(outputList) - 1
|
|
|
|
|
|
|
|
for i, value := range outputList {
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("\n%s%s%s", indent, " ", value))
|
|
|
|
if i != lastIdx {
|
|
|
|
outputBuf.WriteString(",")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("\n%s]", indent))
|
|
|
|
return strings.TrimPrefix(outputBuf.String(), "\n")
|
|
|
|
}
|
|
|
|
|
2016-04-11 19:40:06 +02:00
|
|
|
func formatListOutput(indent, outputName string, outputList []interface{}) string {
|
|
|
|
keyIndent := ""
|
|
|
|
|
|
|
|
outputBuf := new(bytes.Buffer)
|
2016-06-12 11:47:25 +02:00
|
|
|
|
2016-04-11 19:40:06 +02:00
|
|
|
if outputName != "" {
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("%s%s = [", indent, outputName))
|
2016-07-12 18:35:44 +02:00
|
|
|
keyIndent = " "
|
2016-04-11 19:40:06 +02:00
|
|
|
}
|
|
|
|
|
2016-07-12 18:35:44 +02:00
|
|
|
lastIdx := len(outputList) - 1
|
|
|
|
|
|
|
|
for i, value := range outputList {
|
|
|
|
switch typedValue := value.(type) {
|
|
|
|
case string:
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("\n%s%s%s", indent, keyIndent, value))
|
|
|
|
case []interface{}:
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("\n%s%s", indent,
|
|
|
|
formatNestedList(indent+keyIndent, typedValue)))
|
|
|
|
case map[string]interface{}:
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("\n%s%s", indent,
|
|
|
|
formatNestedMap(indent+keyIndent, typedValue)))
|
|
|
|
}
|
|
|
|
|
|
|
|
if lastIdx != i {
|
|
|
|
outputBuf.WriteString(",")
|
|
|
|
}
|
2016-04-11 19:40:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if outputName != "" {
|
2016-06-12 11:47:25 +02:00
|
|
|
if len(outputList) > 0 {
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("\n%s]", indent))
|
|
|
|
} else {
|
|
|
|
outputBuf.WriteString("]")
|
|
|
|
}
|
2016-04-11 19:40:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return strings.TrimPrefix(outputBuf.String(), "\n")
|
|
|
|
}
|
|
|
|
|
2016-07-12 18:35:44 +02:00
|
|
|
func formatNestedMap(indent string, outputMap map[string]interface{}) string {
|
|
|
|
ks := make([]string, 0, len(outputMap))
|
|
|
|
for k, _ := range outputMap {
|
|
|
|
ks = append(ks, k)
|
|
|
|
}
|
|
|
|
sort.Strings(ks)
|
|
|
|
|
|
|
|
outputBuf := new(bytes.Buffer)
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("%s{", indent))
|
|
|
|
|
|
|
|
lastIdx := len(outputMap) - 1
|
|
|
|
for i, k := range ks {
|
|
|
|
v := outputMap[k]
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("\n%s%s = %v", indent+" ", k, v))
|
|
|
|
|
|
|
|
if lastIdx != i {
|
|
|
|
outputBuf.WriteString(",")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("\n%s}", indent))
|
|
|
|
|
|
|
|
return strings.TrimPrefix(outputBuf.String(), "\n")
|
|
|
|
}
|
2017-01-19 05:50:45 +01:00
|
|
|
|
2016-04-11 19:40:06 +02:00
|
|
|
func formatMapOutput(indent, outputName string, outputMap map[string]interface{}) string {
|
|
|
|
ks := make([]string, 0, len(outputMap))
|
|
|
|
for k, _ := range outputMap {
|
|
|
|
ks = append(ks, k)
|
|
|
|
}
|
|
|
|
sort.Strings(ks)
|
|
|
|
|
|
|
|
keyIndent := ""
|
|
|
|
|
|
|
|
outputBuf := new(bytes.Buffer)
|
|
|
|
if outputName != "" {
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("%s%s = {", indent, outputName))
|
|
|
|
keyIndent = " "
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, k := range ks {
|
|
|
|
v := outputMap[k]
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("\n%s%s%s = %v", indent, keyIndent, k, v))
|
|
|
|
}
|
|
|
|
|
|
|
|
if outputName != "" {
|
2016-06-12 11:47:25 +02:00
|
|
|
if len(outputMap) > 0 {
|
|
|
|
outputBuf.WriteString(fmt.Sprintf("\n%s}", indent))
|
|
|
|
} else {
|
|
|
|
outputBuf.WriteString("}")
|
|
|
|
}
|
2016-04-11 19:40:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return strings.TrimPrefix(outputBuf.String(), "\n")
|
|
|
|
}
|
|
|
|
|
2014-07-13 19:25:42 +02:00
|
|
|
func (c *OutputCommand) Help() string {
|
|
|
|
helpText := `
|
2015-06-26 01:20:12 +02:00
|
|
|
Usage: terraform output [options] [NAME]
|
2014-07-13 19:25:42 +02:00
|
|
|
|
|
|
|
Reads an output variable from a Terraform state file and prints
|
2016-10-31 12:34:56 +01:00
|
|
|
the value. With no additional arguments, output will display all
|
|
|
|
the outputs for the root module. If NAME is not specified, all
|
|
|
|
outputs are printed.
|
2014-07-13 19:25:42 +02:00
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-state=path Path to the state file to read. Defaults to
|
2015-08-14 13:01:58 +02:00
|
|
|
"terraform.tfstate".
|
2015-06-26 01:20:12 +02:00
|
|
|
|
|
|
|
-no-color If specified, output won't contain any color.
|
2014-07-13 19:25:42 +02:00
|
|
|
|
2015-06-26 01:20:12 +02:00
|
|
|
-module=name If specified, returns the outputs for a
|
2015-08-14 13:01:58 +02:00
|
|
|
specific module
|
2015-06-22 14:14:01 +02:00
|
|
|
|
2016-07-13 18:38:19 +02:00
|
|
|
-json If specified, machine readable output will be
|
|
|
|
printed in JSON format
|
|
|
|
|
2014-07-13 19:25:42 +02:00
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *OutputCommand) Synopsis() string {
|
|
|
|
return "Read an output from a state file"
|
|
|
|
}
|