You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/hacking/templates/playbooks_directives.rst.j2

22 lines
533 B
Plaintext

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 %}
{% if attribute not in ['loop', 'loop_args'] %}
* {{ attribute }}
{% endif %}
{% endfor %}
{% endfor %}