Files
terraform-docs/docs/how-to/recursive-submodules.md
Levi Notik b4d62c8d93 Fix spelling
Signed-off-by: Levi Notik <levinotik@gmail.com>
2022-09-22 02:47:18 -04:00

1.7 KiB

title, description, menu, weight, toc
title description menu weight toc
Recursive Submodules How to generate submodules documentation recursively with terraform-docs
docs
parent
how-to
206 false

Since v0.15.0

Considering the file structure below of main module and its submodules, it is possible to generate documentation for the main and all its submodules in one execution, with --recursive flag.

{{< alert type="warning" >}} Generating documentation recursively is allowed only with --output-file set. {{< /alert >}}

Path to find submodules can be configured with --recursive-path (defaults to modules).

Each submodule can also have their own .terraform-docs.yml config file, to override configuration from root module.

$ pwd
/path/to/module

$ tree .
.
├── README.md
├── main.tf
├── modules
│   └── my-sub-module
│       ├── README.md
│       ├── main.tf
│       ├── variables.tf
│       └── versions.tf
├── outputs.tf
├── variables.tf
└── versions.tf

$ terraform-docs markdown --recursive --output-file README.md .

Alternatively recursive.enabled config also can be used instead of CLI flag.

$ pwd
/path/to/module

$ tree .
.
├── README.md
├── main.tf
├── modules
│   └── my-sub-module
│       ├── README.md
│       ├── main.tf
│       ├── variables.tf
│       └── versions.tf
├── outputs.tf
├── variables.tf
├── versions.tf
├── ...
└── .terraform-docs.yml

$ cat .terraform-docs.yml
formatter: markdown table

recursive:
  enabled: true

output:
  file: README.md
  mode: inject

$ terraform-docs .