Skip to content

Instantly share code, notes, and snippets.

@AntelopeSalad
Last active August 29, 2015 14:01
Show Gist options
  • Save AntelopeSalad/01df16763eba2a12bb7e to your computer and use it in GitHub Desktop.
Save AntelopeSalad/01df16763eba2a12bb7e to your computer and use it in GitHub Desktop.
# host_vars/all.yml
foo_master = "{{ groups['blah'][0] }}"
# ^ For some reason foo_master is ignored here
# roles/foo/defaults/main.yml
foo_master = "{{ groups['app'][0] }}"
# roles/foo/defaults/tasks.yml
- debug: var=foo_master
# ^ This value is always the default value from the role.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment