sections

Since v0.10.0

The following options are supported and can be used for sections.show and sections.hide:

  • all (since v0.15.0)
  • data-sources (since v0.13.0)
  • header
  • footer (since v0.12.0)
  • inputs
  • modules (since v0.11.0)
  • outputs
  • providers
  • requirements
  • resources (since v0.11.0)

Options

Available options with their default values.

sections:
  hide: []
  show: []

  hide-all: false # deprecated in v0.13.0, removed in v0.15.0
  show-all: true  # deprecated in v0.13.0, removed in v0.15.0

Examples

Show only providers, inputs, and outputs.

sections:
  show:
    - providers
    - inputs
    - outputs

Show everything except providers.

sections:
  hide:
    - providers

Edit on GitHub