Files
terraform-docs/format/templates/markdown_document_requirements.tmpl
Khosrow Moossavi 90942f73b8 Move format package from internal to public
Signed-off-by: Khosrow Moossavi <khos2ow@gmail.com>
2021-09-28 14:43:26 -04:00

17 lines
578 B
Cheetah

{{- if .Settings.ShowRequirements -}}
{{- if not .Module.Requirements -}}
{{- if not .Settings.HideEmpty -}}
{{- indent 0 "#" }} Requirements
No requirements.
{{ end }}
{{ else }}
{{- indent 0 "#" }} Requirements
The following requirements are needed by this module:
{{- range .Module.Requirements }}
{{ $version := ternary (tostring .Version) (printf " (%s)" .Version) "" }}
- {{ anchorNameMarkdown "requirement" .Name }}{{ $version }}
{{- end }}
{{ end }}
{{ end -}}