Files
terraform-docs/docs/how-to/recursive-submodules.md
Khosrow Moossavi 5e48777535 Update docs
Signed-off-by: Khosrow Moossavi <khos2ow@gmail.com>
2024-05-30 18:36:36 -04:00

1.9 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
207 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).

The main module document is generated by default, which can be configured with --recursive-include-main. Should the main module document be excluded from document generation, use --recursive-include-main=false.

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 .