include_vars for defaults

767 views
Skip to first unread message

Matt Willsher

unread,
Apr 28, 2014, 6:01:54 PM4/28/14
to ansible...@googlegroups.com
Hi,

I'm trying to write generic roles for particular applications and keep hitting across the same problem:

I want to set role default based on the operating system or other facts, like include_vars, but this doesn't appear to be supported.

The only option I see practically available for template is to use the template logic to handle defaults, but that, while flexible, is not as elegant as being able to set by-fact defaults.

The code I'm working at present on is https://github.com/WillsherPartners/ansible-sshd , where there is a large set of defaults and a template.  sshd_subsystem_sftp varies depending on OS, but I still want to give the person using the role to option to override the value if they see fit.

Are there any plans for include_vars: (include_defaults?) functionality in Ansible, or is there some other way to tackle per-os defaults? 


Thanks,
Matt


Michael DeHaan

unread,
Apr 28, 2014, 7:54:57 PM4/28/14
to ansible...@googlegroups.com
I'm a little confused by this because you seem to be saying a feature isn't supported that is actually part of Ansible, but it's actually a module already in Ansible:


It also works with the "when" operator for per-OS variant usage.

Were you perhaps reading an old thread talking about a language feature when it didn't exist?

Sorry for confusion...







--
You received this message because you are subscribed to the Google Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/afaeac27-07cf-4e10-8504-ade22c361540%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Matt Willsher

unread,
Apr 29, 2014, 3:05:05 AM4/29/14
to ansible...@googlegroups.com

I'd like the included vars injected with the same precedence as those in defaults/main.yml rather than the precedence of vars/main.yml. The documentation is not clear on the what precendence  include_vars get.

From my testing, vars coming from include_vars have a higher precedence than inventory vars so they can not be overridden by inventory vars.

Taking:

1. -e variables always win
2. then comes "most everything else"
3. then comes variables defined in inventory
4. then comes facts discovered about a system
5. then "role defaults", which are the most "defaulty" and lose in priority to everything.

I'd like the included vars to have the precedence of 5, rather than 2

> You received this message because you are subscribed to a topic in the Google Groups "Ansible Project" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/topic/ansible-project/2VbVHrb0Xrc/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to ansible-proje...@googlegroups.com.


> To post to this group, send email to ansible...@googlegroups.com.

Michael DeHaan

unread,
Apr 29, 2014, 8:32:51 AM4/29/14
to ansible...@googlegroups.com
include_vars creates fact scoped variables.

Sorry, you're not going to be able to get it to work every which sort of different way.

I would not assume OS specific defaults *or* instead just put hosts in a group based on the OS, if you really need that capability, and then could use group_vars/ files to do this.




Matt Willsher

unread,
Apr 29, 2014, 10:05:00 AM4/29/14
to ansible...@googlegroups.com

Testing on 1.5.5 they appear at the level of "most everything else" - a variable defined in a include_vars file overrides an inventory variable. If they were at the level of facts, that would be great and would all default like behaviour and overriding by more environment specific data.


Michael DeHaan

unread,
Apr 29, 2014, 11:49:30 AM4/29/14
to ansible...@googlegroups.com
these variables are facts -- they override inventory variables because they are at the same depth and are loaded later






Matt Willsher

unread,
Apr 29, 2014, 12:14:12 PM4/29/14
to ansible...@googlegroups.com

In the docs on precedence, discovered facts come under inventory but the include_vars facts are actually higher precedence than the inventory.

Being able to have a default_vars module would, I maintain, be a boon for reusable roles. They can be less opinionated and fit more circumstances. It allows for user control while not requiring configuration from the end user for the role to work.

Is it something I could implement as a module for my own use or is the variable registration more ingrained than that?

Thanks for your time,
Matt

Michael DeHaan

unread,
Apr 29, 2014, 2:51:32 PM4/29/14
to ansible...@googlegroups.com
This is true, it's also intentional to avoid facts clobbering explicitly set variables.  But it's all around the same ballpark.

No, we are not adding any kind of "default_vars" module.   

This doesn't even make sense as a module as "defaults/" in a roles directory is processed by core code, it's not a module.

I'm sorry you can't have precedence every way you could possibly want it, but it works the way it does.

You can use include_vars with conditionals or facts to easily load OS specific variables.

It cannot be used for OS specific defaults.





"F.L. Jonathan Araña Cruz"

unread,
Apr 30, 2014, 5:54:04 AM4/30/14
to ansible...@googlegroups.com
I asked for this a few weeks back. Finally I managed to implement a pattern in my role to workaround this

https://github.com/ansible/ansible/issues/6756

Michael DeHaan

unread,
Apr 30, 2014, 4:41:29 PM4/30/14
to ansible...@googlegroups.com
Well, sort of, but unfortunately, no :)

While the default does control what variable gets loaded with "set_fact" (this could have been done without the default) it is still going to get loaded at a level that is not the same as defaults, so inventory can't override what you have loaded there.

I'd find "include_vars" cleaner personally, if that's all you want

- include_vars: "{{ ansible_os_distribution }}.yml"

Which allows vars/RedHat.yml and vars/Debian.yml in the role.




Daniel

unread,
Nov 6, 2018, 3:11:19 PM11/6/18
to Ansible Project
I also have the need to set environment specific role defaults.

I am using include_vars for this purpose which works fine as long as you don't want to overwrite some of this role default variables via host_vars.
Because that is not going to work, because host_vars are overwritten by included vars.

Therefore after the include_vars for my role defaults, I include the hostvars explicitly again like this:

- name: Include hostname specific vars
include_vars:
file: "host_vars/{{ inventory_hostname }}.yml"

It works, but I am not sure if this is only working by accident.

Regrads
Daniel
Reply all
Reply to author
Forward
0 new messages