From b18e462bbb41c3ca779c5d65be0c45862329591d Mon Sep 17 00:00:00 2001 From: Ken Celenza Date: Wed, 14 Oct 2020 13:16:30 -0400 Subject: [PATCH] Consistent Taxonomy (#72215) Historically "these" have been called directives, attributes, and keywords. We've now settled on `keyword` (https://docs.ansible.com/ansible/latest/reference_appendices/playbooks_keywords.html). Update all documentation to reflect this term. --- docs/docsite/rst/user_guide/playbooks_module_defaults.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docsite/rst/user_guide/playbooks_module_defaults.rst b/docs/docsite/rst/user_guide/playbooks_module_defaults.rst index b217c624165..ad370160524 100644 --- a/docs/docsite/rst/user_guide/playbooks_module_defaults.rst +++ b/docs/docsite/rst/user_guide/playbooks_module_defaults.rst @@ -3,7 +3,7 @@ Module defaults =============== -If you frequently call the same module with the same arguments, it can be useful to define default arguments for that particular module using the ``module_defaults`` attribute. +If you frequently call the same module with the same arguments, it can be useful to define default arguments for that particular module using the ``module_defaults`` keyword. Here is a basic example:: @@ -24,7 +24,7 @@ Here is a basic example:: state: touch path: /tmp/file3 -The ``module_defaults`` attribute can be used at the play, block, and task level. Any module arguments explicitly specified in a task will override any established default for that module argument:: +The ``module_defaults`` keyword can be used at the play, block, and task level. Any module arguments explicitly specified in a task will override any established default for that module argument:: - block: - debug: