mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 12:58:35 +07:00
17 lines
588 B
Cheetah
17 lines
588 B
Cheetah
{{- if .Config.Sections.Requirements -}}
|
|
{{- if not .Module.Requirements -}}
|
|
{{- if not .Config.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 -}} |