documented actual precedence (#38009)
fixes #22025
(cherry picked from commit 5ad13d66aa
)
This commit is contained in:
parent
529d778015
commit
07bb0407ad
1 changed files with 2 additions and 2 deletions
|
@ -871,10 +871,10 @@ In Ansible version 2.x, we have made the order of precedence more specific (with
|
|||
* role vars (defined in role/vars/main.yml)
|
||||
* block vars (only for tasks in block)
|
||||
* task vars (only for the task)
|
||||
* role (and include_role) params
|
||||
* include params
|
||||
* include_vars
|
||||
* set_facts / registered vars
|
||||
* role (and include_role) params
|
||||
* include params
|
||||
* extra vars (always win precedence)
|
||||
|
||||
Basically, anything that goes into "role defaults" (the defaults folder inside the role) is the most malleable and easily overridden. Anything in the vars directory of the role overrides previous versions of that variable in namespace. The idea here to follow is that the more explicit you get in scope, the more precedence it takes with command line ``-e`` extra vars always winning. Host and/or inventory variables can win over role defaults, but not explicit includes like the vars directory or an ``include_vars`` task.
|
||||
|
|
Loading…
Reference in a new issue