summaryrefslogtreecommitdiffstats
path: root/docs/templates/playbooks_keywords.rst.j2
blob: 8d42267f24b3878f7c82920aad0e4c040645bded (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.. _playbook_keywords:

Playbook Keywords
=================

These are the keywords available on common playbook objects. Keywords are one of several sources for configuring Ansible behavior. See :ref:`general_precedence_rules` for details on the relative precedence of each source.


.. note:: Please note:

    * Aliases for the directives are not reflected here, nor are mutable one. For example,
      :term:`action` in task can be substituted by the name of any Ansible module.
    * The keywords do not have ``version_added`` information at this time
    * Some keywords set defaults for the objects inside of them rather than for the objects
      themselves


.. contents::
   :local:
   :depth: 1

{% for name in playbook_class_names %}

{{ name }}
{{ '-' * name|length }}
{#.. glossary::#}

{% for attribute in pb_keywords[name]|sort %}
    {{ attribute }}
        {{ pb_keywords[name][attribute] |indent(8) }}

{% endfor %}
{% endfor %}