mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-07-08 19:49:09 +00:00
now generate list of playbook ojbect directives
TODO: needs links/info and conditionals added
This commit is contained in:
parent
771f1e31a9
commit
fbdcb22e36
5 changed files with 59 additions and 1 deletions
19
hacking/templates/playbooks_directives.rst.j2
Normal file
19
hacking/templates/playbooks_directives.rst.j2
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
Directives Glossary
|
||||
===================
|
||||
|
||||
Here we list the common playbook objects and the possible directives that can be used with them.
|
||||
Note that not all directives affect the object itself and might just be there to be inherited by other contained objects.
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
:depth: 1
|
||||
|
||||
{% for name in oblist %}
|
||||
|
||||
{{ name }}
|
||||
{{ '-' * name|length }}
|
||||
{% for attribute in oblist[name].__dict__['_attributes']|sort %}
|
||||
* {{ attribute }}
|
||||
{% endfor %}
|
||||
|
||||
{% endfor %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue