c2469648e4
* Add docs/docsite/rst/reference_appendices/general_precedence.rst Co-Authored-By: Sandra McCann <samccann@redhat.com>
33 lines
919 B
Django/Jinja
33 lines
919 B
Django/Jinja
.. _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 clist %}
|
|
|
|
{{ name }}
|
|
{{ '-' * name|length }}
|
|
.. glossary::
|
|
|
|
{% for attribute in oblist[name]|sort %}
|
|
{{ attribute }}
|
|
{{ oblist[name][attribute] |indent(8) }}
|
|
|
|
{% endfor %}
|
|
{% endfor %}
|