2018-04-27 13:21:39 -05:00
.. _playbook_keywords:
2017-11-10 16:59:26 -08:00
Playbook Keywords
=================
2016-02-25 16:41:50 -05:00
2019-07-09 13:14:40 -04:00
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.
2017-11-10 16:59:26 -08:00
.. 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
2016-02-25 16:41:50 -05:00
2017-03-23 01:11:40 -04:00
2016-02-25 16:41:50 -05:00
.. contents::
:local:
:depth: 1
2019-07-16 12:19:01 -07:00
{% for name in playbook_class_names %}
2016-02-25 16:41:50 -05:00
{{ name }}
{{ '-' * name|length }}
2017-09-07 15:46:53 -04:00
.. glossary::
2019-07-16 12:19:01 -07:00
{% for attribute in pb_keywords[name]|sort %}
2017-09-07 15:46:53 -04:00
{{ attribute }}
2019-07-16 12:19:01 -07:00
{{ pb_keywords[name][attribute] |indent(8) }}
2017-09-07 15:46:53 -04:00
2016-02-25 16:41:50 -05:00
{% endfor %}
{% endfor %}