Files
terraform-docs/format/templates/asciidoc_document_requirements.tmpl
Khosrow Moossavi bb109711a1 Deprecate Settings and Options in favor of Config
Signed-off-by: Khosrow Moossavi <khos2ow@gmail.com>
2021-09-28 15:47:27 -04:00

17 lines
589 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) "" }}
- {{ anchorNameAsciidoc "requirement" .Name }}{{ $version }}
{{- end }}
{{ end }}
{{ end -}}