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
|
|
|
|
2017-11-11 01:59:26 +01:00
|
|
|
These are the keywords available on common playbook objects.
|
|
|
|
|
|
|
|
.. 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
|
|
|
|
|
2016-02-26 22:18:55 +01:00
|
|
|
{% for name in clist %}
|
2016-02-25 22:41:50 +01:00
|
|
|
|
|
|
|
{{ name }}
|
|
|
|
{{ '-' * name|length }}
|
2017-09-07 21:46:53 +02:00
|
|
|
.. glossary::
|
|
|
|
|
2016-02-26 22:18:55 +01:00
|
|
|
{% for attribute in oblist[name]|sort %}
|
2017-09-07 21:46:53 +02:00
|
|
|
{{ attribute }}
|
2017-11-11 01:59:26 +01:00
|
|
|
{{ oblist[name][attribute] |indent(8) }}
|
2017-09-07 21:46:53 +02:00
|
|
|
|
2016-02-25 22:41:50 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|