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