authelia/docs/layouts/shortcodes/table-config-keys.html

15 lines
376 B
HTML
Raw Normal View History

{{ $secrets := .Get "secrets" }}
| Configuration Key | Environment Variable |
|:-----------------:|:--------------------:|
{{- range $.Site.Data.configkeys }}
{{- if eq "true" $secrets }}
{{- if .secret }}
| [{{ .path }}] | {{ .env }} |
{{- end }}
{{- else }}
{{- if not .secret }}
| {{ .path }} | {{ .env }} |
{{- end }}
{{- end }}
{{- end }}