From 8eb6086cb2530af46d206f97eb5e95c981ba291d Mon Sep 17 00:00:00 2001 From: Nick Metz Date: Fri, 21 Jun 2019 09:31:31 +0200 Subject: [PATCH] \#21799 Since Terraform version 0.12 "-module=" is not a valid option for Terraform output aynmore. Also added missing option -no-color to documentation. --- website/docs/commands/output.html.markdown | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/website/docs/commands/output.html.markdown b/website/docs/commands/output.html.markdown index 8969dca1e..6db0ef3e0 100644 --- a/website/docs/commands/output.html.markdown +++ b/website/docs/commands/output.html.markdown @@ -24,13 +24,9 @@ The command-line flags are all optional. The list of available flags are: * `-json` - If specified, the outputs are formatted as a JSON object, with a key per output. If `NAME` is specified, only the output specified will be returned. This can be piped into tools such as `jq` for further processing. +* `-no-color` - If specified, output won't contain any color. * `-state=path` - Path to the state file. Defaults to "terraform.tfstate". Ignored when [remote state](/docs/state/remote.html) is used. -* `-module=module_name` - The module path which has needed output. - By default this is the root path. Other modules can be specified by - a period-separated list. Example: "foo" would reference the module - "foo" but "foo.bar" would reference the "bar" module in the "foo" - module. ## Examples