2014-07-13 19:25:42 +02:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2018-10-13 18:24:03 +02:00
|
|
|
"encoding/json"
|
2014-07-13 19:25:42 +02:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
2018-03-28 00:31:05 +02: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
|
|
|
ctyjson "github.com/zclconf/go-cty/cty/json"
|
terraform: ugly huge change to weave in new HCL2-oriented types
Due to how deeply the configuration types go into Terraform Core, there
isn't a great way to switch out to HCL2 gradually. As a consequence, this
huge commit gets us from the old state to a _compilable_ new state, but
does not yet attempt to fix any tests and has a number of known missing
parts and bugs. We will continue to iterate on this in forthcoming
commits, heading back towards passing tests and making Terraform
fully-functional again.
The three main goals here are:
- Use the configuration models from the "configs" package instead of the
older models in the "config" package, which is now deprecated and
preserved only to help us write our migration tool.
- Do expression inspection and evaluation using the functionality of the
new "lang" package, instead of the Interpolator type and related
functionality in the main "terraform" package.
- Represent addresses of various objects using types in the addrs package,
rather than hand-constructed strings. This is not critical to support
the above, but was a big help during the implementation of these other
points since it made it much more explicit what kind of address is
expected in each context.
Since our new packages are built to accommodate some future planned
features that are not yet implemented (e.g. the "for_each" argument on
resources, "count"/"for_each" on modules), and since there's still a fair
amount of functionality still using old-style APIs, there is a moderate
amount of shimming here to connect new assumptions with old, hopefully in
a way that makes it easier to find and eliminate these shims later.
I apologize in advance to the person who inevitably just found this huge
commit while spelunking through the commit history.
2018-04-30 19:33:53 +02: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
|
|
|
"github.com/hashicorp/terraform/addrs"
|
2018-10-13 18:24:03 +02:00
|
|
|
"github.com/hashicorp/terraform/repl"
|
2018-11-17 02:24:06 +01:00
|
|
|
"github.com/hashicorp/terraform/states"
|
2018-03-28 00:31:05 +02:00
|
|
|
"github.com/hashicorp/terraform/tfdiags"
|
2014-07-13 19:25:42 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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 {
|
2020-04-01 21:01:08 +02:00
|
|
|
args = c.Meta.process(args)
|
2019-04-12 13:37:27 +02:00
|
|
|
var module, statePath string
|
2016-07-13 18:38:19 +02:00
|
|
|
var jsonOutput bool
|
2018-11-21 15:35:27 +01:00
|
|
|
cmdFlags := c.Meta.defaultFlagSet("output")
|
2016-07-13 18:38:19 +02:00
|
|
|
cmdFlags.BoolVar(&jsonOutput, "json", false, "json")
|
2019-04-12 13:37:27 +02:00
|
|
|
cmdFlags.StringVar(&statePath, "state", "", "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 {
|
2019-08-16 14:31:21 +02:00
|
|
|
c.Ui.Error(fmt.Sprintf("Error parsing command-line flags: %s\n", err.Error()))
|
2014-07-13 19:25:42 +02:00
|
|
|
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
|
|
|
|
2019-04-12 13:37:27 +02:00
|
|
|
if statePath != "" {
|
|
|
|
c.Meta.statePath = statePath
|
|
|
|
}
|
|
|
|
|
2018-03-28 00:31:05 +02:00
|
|
|
var diags tfdiags.Diagnostics
|
|
|
|
|
2017-01-19 05:50:45 +01:00
|
|
|
// Load the backend
|
2018-03-28 00:31:05 +02:00
|
|
|
b, backendDiags := c.Backend(nil)
|
|
|
|
diags = diags.Append(backendDiags)
|
|
|
|
if backendDiags.HasErrors() {
|
|
|
|
c.showDiagnostics(diags)
|
2017-01-19 05:50:45 +01:00
|
|
|
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
|
|
|
// This is a read-only command
|
|
|
|
c.ignoreRemoteBackendVersionConflict(b)
|
|
|
|
|
2020-06-16 18:23:15 +02:00
|
|
|
env, err := c.Workspace()
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error selecting workspace: %s", err))
|
|
|
|
return 1
|
|
|
|
}
|
2017-02-28 19:13:03 +01:00
|
|
|
|
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
|
|
|
stateStore, err := b.StateMgr(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
|
|
|
|
}
|
|
|
|
|
2018-10-13 18:24:03 +02:00
|
|
|
moduleAddr := addrs.RootModuleInstance
|
|
|
|
if module != "" {
|
|
|
|
// This option was supported prior to 0.12.0, but no longer supported
|
|
|
|
// because we only persist the root module outputs in state.
|
|
|
|
// (We could perhaps re-introduce this by doing an eval walk here to
|
|
|
|
// repopulate them, similar to how "terraform console" does it, but
|
|
|
|
// that requires more thought since it would imply this command
|
|
|
|
// supporting remote operations, which is a big change.)
|
|
|
|
diags = diags.Append(tfdiags.Sourceless(
|
|
|
|
tfdiags.Error,
|
|
|
|
"Unsupported option",
|
|
|
|
"The -module option is no longer supported since Terraform 0.12, because now only root outputs are persisted in 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
|
|
|
c.showDiagnostics(diags)
|
|
|
|
return 1
|
|
|
|
}
|
2015-05-27 16:46:12 +02:00
|
|
|
|
2015-02-22 01:04:32 +01:00
|
|
|
state := stateStore.State()
|
2018-11-17 02:24:06 +01:00
|
|
|
if state == nil {
|
|
|
|
state = states.NewState()
|
|
|
|
}
|
|
|
|
|
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
|
|
|
mod := state.Module(moduleAddr)
|
2015-05-27 16:46:12 +02:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
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
|
|
|
if !jsonOutput && (state.Empty() || len(mod.OutputValues) == 0) {
|
2020-08-28 17:05:46 +02:00
|
|
|
diags = diags.Append(tfdiags.Sourceless(
|
|
|
|
tfdiags.Warning,
|
|
|
|
"No outputs found",
|
|
|
|
"The state file either has no outputs defined, or all the defined "+
|
|
|
|
"outputs are empty. Please define an output in your configuration "+
|
|
|
|
"with the `output` keyword and run `terraform refresh` for it to "+
|
|
|
|
"become available. If you are using interpolation, please verify "+
|
|
|
|
"the interpolated value is not empty. You can use the "+
|
|
|
|
"`terraform console` command to assist.",
|
|
|
|
))
|
|
|
|
c.showDiagnostics(diags)
|
2019-11-07 01:26:32 +01:00
|
|
|
return 0
|
2014-07-13 19:25:42 +02:00
|
|
|
}
|
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 {
|
2018-10-13 18:24:03 +02:00
|
|
|
// Due to a historical accident, the switch from state version 2 to
|
|
|
|
// 3 caused our JSON output here to be the full metadata about the
|
|
|
|
// outputs rather than just the output values themselves as we'd
|
|
|
|
// show in the single value case. We must now maintain that behavior
|
|
|
|
// for compatibility, so this is an emulation of the JSON
|
|
|
|
// serialization of outputs used in state format version 3.
|
|
|
|
type OutputMeta struct {
|
|
|
|
Sensitive bool `json:"sensitive"`
|
|
|
|
Type json.RawMessage `json:"type"`
|
|
|
|
Value json.RawMessage `json:"value"`
|
|
|
|
}
|
|
|
|
outputs := map[string]OutputMeta{}
|
|
|
|
|
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
|
|
|
for n, os := range mod.OutputValues {
|
2018-10-13 18:24:03 +02:00
|
|
|
jsonVal, err := ctyjson.Marshal(os.Value, os.Value.Type())
|
|
|
|
if err != nil {
|
|
|
|
diags = diags.Append(err)
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
jsonType, err := ctyjson.MarshalType(os.Value.Type())
|
|
|
|
if err != nil {
|
|
|
|
diags = diags.Append(err)
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
outputs[n] = OutputMeta{
|
|
|
|
Sensitive: os.Sensitive,
|
|
|
|
Type: json.RawMessage(jsonType),
|
|
|
|
Value: json.RawMessage(jsonVal),
|
|
|
|
}
|
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-13 18:24:03 +02:00
|
|
|
|
|
|
|
jsonOutputs, err := json.MarshalIndent(outputs, "", " ")
|
2016-07-13 18:38:19 +02:00
|
|
|
if err != nil {
|
2018-10-13 18:24:03 +02:00
|
|
|
diags = diags.Append(err)
|
|
|
|
c.showDiagnostics(diags)
|
2016-07-13 18:38:19 +02:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
c.Ui.Output(string(jsonOutputs))
|
|
|
|
return 0
|
|
|
|
} else {
|
2018-10-15 00:33:30 +02:00
|
|
|
c.Ui.Output(outputsAsString(state, moduleAddr, false))
|
2016-07-13 18:38:19 +02:00
|
|
|
return 0
|
|
|
|
}
|
2015-06-26 01:20:12 +02: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
|
|
|
os, ok := mod.OutputValues[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
|
|
|
|
}
|
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
|
|
|
v := os.Value
|
2014-07-13 19:25:42 +02:00
|
|
|
|
2016-07-13 18:38:19 +02:00
|
|
|
if jsonOutput {
|
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
|
|
|
jsonOutput, err := ctyjson.Marshal(v, v.Type())
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
c.Ui.Output(string(jsonOutput))
|
2016-07-13 18:38:19 +02:00
|
|
|
} else {
|
2020-09-09 20:13:53 +02:00
|
|
|
result := repl.FormatValue(v, 0)
|
2018-10-13 18:24:03 +02:00
|
|
|
c.Ui.Output(result)
|
2016-03-22 15:22:33 +01:00
|
|
|
}
|
|
|
|
|
2014-07-13 19:25:42 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
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 {
|
2020-10-24 01:55:32 +02:00
|
|
|
return "Show output values from your root module"
|
2014-07-13 19:25:42 +02:00
|
|
|
}
|