github.com/kcburge/terraform@v0.11.12-beta1/website/docs/commands/show.html.markdown (about)

     1  ---
     2  layout: "docs"
     3  page_title: "Command: show"
     4  sidebar_current: "docs-commands-show"
     5  description: |-
     6    The `terraform show` command is used to provide human-readable output from a state or plan file. This can be used to inspect a plan to ensure that the planned operations are expected, or to inspect the current state as Terraform sees it.
     7  ---
     8  
     9  # Command: show
    10  
    11  The `terraform show` command is used to provide human-readable output
    12  from a state or plan file. This can be used to inspect a plan to ensure
    13  that the planned operations are expected, or to inspect the current state
    14  as Terraform sees it.
    15  
    16  ## Usage
    17  
    18  Usage: `terraform show [options] [path]`
    19  
    20  You may use `show` with a path to either a Terraform state file or plan
    21  file. If no path is specified, the current state will be shown.
    22  
    23  The command-line flags are all optional. The list of available flags are:
    24  
    25  * `-module-depth=n` - Specifies the depth of modules to show in the output.
    26    By default this is -1, which will expand all.
    27  
    28  * `-no-color` - Disables output with coloring
    29