mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 12:58:35 +07:00
19 lines
535 B
Cheetah
19 lines
535 B
Cheetah
{{- if .Settings.ShowProviders -}}
|
|
{{- if not .Module.Providers -}}
|
|
{{- if not .Settings.HideEmpty -}}
|
|
{{- indent 0 "=" }} Providers
|
|
|
|
No providers.
|
|
{{ end }}
|
|
{{ else }}
|
|
{{- indent 0 "=" }} Providers
|
|
|
|
[cols="a,a",options="header,autowidth"]
|
|
|===
|
|
|Name |Version
|
|
{{- range .Module.Providers }}
|
|
|{{ anchorNameAsciidoc "provider" .FullName }} |{{ tostring .Version | default "n/a" }}
|
|
{{- end }}
|
|
|===
|
|
{{ end }}
|
|
{{ end -}} |