Browse code

updated namespace entry

Brian Coca authored on 2017/07/11 06:00:42
Showing 1 changed files
... ...
@@ -9,7 +9,9 @@ Ansible Changes By Release
9 9
 * New import/include keywords to replace the old bare `include` directives. The use of `static: {yes|no}` on such includes is now deprecated.
10 10
     - Using `import_*` (`import_playbook`, `import_tasks`, `import_role`) directives are static.
11 11
     - Using `include_*` (`include_tasks`, `include_role`) directives are dynamic.
12
-* Added fact namespacing, from now on facts will be available under `ansible_facts` namespace (i.e. `ansible_facts.ansible_os_distribution`), they will still also be added into the main namespace directly but now also having a configuration toggle to disable this. Eventually this will be on by default. This is done to avoid collisions and possible security issues as facts come from the remote targets and they might be compromised.
12
+* Added fact namespacing, from now on facts will be available under `ansible_facts` namespace, without the `ansible_` prefix (i.e. `ansible_facts.os_distribution` vs `ansible_os_distribution`).
13
+  They will continue to be added into the main namespace directly, but now a configuration toggle to disable this, currently off my default, in the future it will be on by default.
14
+  This is done to avoid collisions and possible security issues as facts come from the remote targets and they might be compromised.
13 15
 * new `order` play level keyword that allows the user to change the order in which Ansible processes hosts when dispatching tasks.
14 16
 * Users can now set group merge priority for groups of the same depth (parent child relationship), using the new `ansible_group_priority` variable, when values are the same or don't exist it will fallback to the previous sorting by name'.
15 17
 * Inventory has been revamped: