Search code examples
ansiblewildcarddevopsansible-inventoryansible-template

How can I use a wildcard to include multiple files for using environment variables in Ansible?


I am trying to do a custom install of openedx and I have a bunch of .yml files with environment variables in them inside paths that looks like this

playbooks/roles/<component-name>/defaults/main.yml

Then, while running a playbook that installs all such components, I'm using a command like this

ansible-playbook ./openedx_native.yml -e"@roles/<component-name-1>/defaults/main.yml" -e"@roles/<component-name-2>/defaults/main.yml"

Now I want to be able to use the main.yml files from all components and there are about 20-25 of them, so I'm looking for a way to include them using a wildcard, something like this

ansible-playbook ./openedx_native.yml -e"@roles/*/defaults/main.yml"

This, of course, doesn't work and Ansible throws an error like this

ERROR! the file_name '/var/tmp/configuration/playbooks/roles/*/defaults/main.yml' does not exist, or is not readable

How do I achieve this? Please help!


Solution

  • An option would be to find the files and include_vars.

      tasks:
        - command: "sh -c 'find {{ playbook_dir }}/roles/*/defaults/main.yml'"
          register: result
        - include_vars:
            file: "{{ item }}"
          loop: "{{ result.stdout_lines }}"