mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 04:48:33 +07:00
17 lines
523 B
Cheetah
17 lines
523 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
|
|
|
|
| Name | Version |
|
|
|------|---------|
|
|
{{- range .Module.Requirements }}
|
|
| {{ anchorNameMarkdown "requirement" .Name }} | {{ tostring .Version | default "n/a" }} |
|
|
{{- end }}
|
|
{{ end }}
|
|
{{ end -}} |