authelia/internal/configuration/test_resources/config_walk.yml

9 lines
163 B
YAML

# yamllint disable-file
---
{{- range (walk "./test_resources/config_walk/" "" false) }}
{{ if not .IsDir }}
{{ fileContent .Path }}
{{- end }}
{{- end }}
...