mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 04:48:33 +07:00
17 lines
566 B
Cheetah
17 lines
566 B
Cheetah
{{- if .Config.Sections.Providers -}}
|
|
{{- if not .Module.Providers -}}
|
|
{{- if not .Config.Settings.HideEmpty -}}
|
|
{{- indent 0 "#" }} Providers
|
|
|
|
No providers.
|
|
{{ end }}
|
|
{{ else }}
|
|
{{- indent 0 "#" }} Providers
|
|
|
|
The following providers are used by this module:
|
|
{{- range .Module.Providers }}
|
|
{{ $version := ternary (tostring .Version) (printf " (%s)" .Version) "" }}
|
|
- {{ anchorNameMarkdown "provider" .FullName }}{{ $version }}
|
|
{{- end }}
|
|
{{ end }}
|
|
{{ end -}} |