summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMatt Martz <matt@sivel.net>2020-04-08 18:36:38 +0200
committerGitHub <noreply@github.com>2020-04-08 18:36:38 +0200
commit087be1da5065f70bff89e1cff7af042d80ed0acc (patch)
tree0bfa9ac39d1deb523cfec0071e5e514cd880aa84 /docs
parentUpdate changelogs/fragments/allow-fail-json-msg-to-be-positional.yaml (diff)
downloadansible-087be1da5065f70bff89e1cff7af042d80ed0acc.tar.xz
ansible-087be1da5065f70bff89e1cff7af042d80ed0acc.zip
Allow tasks to notify a fqcn handler name (#68213)
* Allow tasks to notify a fqcn handler name * Add tests. Fixes #68181 * Add changelog fragment * Add test to ensure handlers are deduped properly with fqcn, role, and just handler names * Add some docs about new special vars
Diffstat (limited to 'docs')
-rw-r--r--docs/docsite/rst/reference_appendices/special_variables.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/docsite/rst/reference_appendices/special_variables.rst b/docs/docsite/rst/reference_appendices/special_variables.rst
index 328f07a34d..fed8e9f8da 100644
--- a/docs/docsite/rst/reference_appendices/special_variables.rst
+++ b/docs/docsite/rst/reference_appendices/special_variables.rst
@@ -67,6 +67,12 @@ ansible_role_names
The names of the roles currently imported into the current play, or roles referenced as dependencies of the roles
imported into the current play.
+ansible_role_name
+ The fully qualified collection role name, in the format of ``namespace.collection.role_name``
+
+ansible_collection_name
+ The name of the collection the task that is executing is a part of. In the format of ``namespace.collection``
+
ansible_run_tags
Contents of the ``--tags`` CLI option, which specifies which tags will be included for the current run.