mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 12:58:35 +07:00
17 lines
513 B
Cheetah
17 lines
513 B
Cheetah
{{- if .Settings.ShowRequirements -}}
|
|
{{- if not .Module.Requirements -}}
|
|
{{- if not .Settings.HideEmpty -}}
|
|
{{- indent 0 "#" }} Requirements
|
|
|
|
No requirements.
|
|
{{ end }}
|
|
{{ else }}
|
|
{{- indent 0 "#" }} Requirements
|
|
|
|
| Name | Version |
|
|
|------|---------|
|
|
{{- range .Module.Requirements }}
|
|
| {{ anchorNameMarkdown "requirement" .Name }} | {{ tostring .Version | default "n/a" }} |
|
|
{{- end }}
|
|
{{ end }}
|
|
{{ end -}} |