master
md 17 lines 489 Bytes
Rendered Raw
1 [# Jinja template: integrations/templates/verify.md
2 Renders the optional '## Verify discovery worked' h2.
3 Skip the section entirely if the metadata has no `verify:` block. #]
4 [% if entry.verify is defined and entry.verify.checks and entry.verify.checks.list %]
5 ## Verify discovery worked
6 [% if entry.verify.description %]
7
8 [[ entry.verify.description ]]
9
10 [% endif %]
11 [% for check in entry.verify.checks.list %]
12 ### [[ check.name ]]
13
14 [[ check.description ]]
15
16 [% endfor %]
17 [% endif %]