Ansible group vars priority
问题 Let's say I have 3 files in group_vars: abc.yml all.yml xyz.yml And the same variable defined in them: - my_var: abc - my_var: all - my_var: xyz Ansible documentation says: Within any section, redefining a var will overwrite the previous instance. If multiple groups have the same variable, the last one loaded wins. If you define a variable twice in a play’s vars: section, the 2nd one wins. Does it mean that load order is alphabetical one and abc.yml has the lowest priority, whereas xyz.yml