Files
terraform-docs/format/templates/markdown_document_modules.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

22 lines
534 B
Cheetah

{{- if .Config.Sections.ModuleCalls -}}
{{- if not .Module.ModuleCalls -}}
{{- if not .Config.Settings.HideEmpty -}}
{{- indent 0 "#" }} Modules
No modules.
{{ end }}
{{ else }}
{{- indent 0 "#" }} Modules
The following Modules are called:
{{- range .Module.ModuleCalls }}
{{ indent 1 "#" }} {{ anchorNameMarkdown "module" .Name }}
Source: {{ .Source }}
Version: {{ .Version }}
{{ end }}
{{ end }}
{{ end -}}