terraform-docs(1)
⋅ a quick utility to generate docs from terraform modules.
- View docs for inputs and outputs
- Generate docs for inputs and outputs
- Generate JSON docs (for customizing presentation)
- Generate markdown tables of inputs and outputs
go get github.com/segmentio/terraform-docs
- Binaries
brew install terraform-docs
(on macOS)
Usage:
terraform-docs [json | md | markdown] <path>...
terraform-docs -h | --help
Examples:
# View inputs and outputs
$ terraform-docs ./my-module
# View inputs and outputs for variables.tf and outputs.tf only
$ terraform-docs variables.tf outputs.tf
# Generate a JSON of inputs and outputs
$ terraform-docs json ./my-module
# Generate markdown tables of inputs and outputs
$ terraform-docs md ./my-module
# Generate markdown tables of inputs and outputs for the given module and ../config.tf
$ terraform-docs md ./my-module ../config.tf
Options:
-h, --help show help information
Given a simple module at ./_example
:
/**
* This module has a variable and an output. This text here will be output before any inputs or outputs!
*/
variable "subnet_ids" {
description = "a comma-separated list of subnet IDs"
}
// The VPC ID.
output "vpc_id" {
value = "vpc-5c1f55fd"
}
To view docs:
$ terraform-docs _example
To output JSON docs:
$ terraform-docs json _example
{
"Comment": "This module has a variable and an output. This text here will be output before any inputs or outputs!\n",
"Inputs": [
{
"Name": "subnet_ids",
"Description": "a comma-separated list of subnet IDs",
"Default": ""
}
],
"Outputs": [
{
"Name": "vpc_id",
"Description": "The VPC ID.\n"
}
]
}
To output markdown docs:
$ terraform-docs md _example
This module has a variable and an output. This text here will be output before any inputs or outputs!
## Inputs
| Name | Description | Default | Required |
|------|-------------|:-----:|:-----:|
| subnet_ids | a comma-separated list of subnet IDs | - | yes |
## Outputs
| Name | Description |
|------|-------------|
| vpc_id | The VPC ID. |
MIT License
Copyright (c) 2017 Segment, Inc
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.