Skip to content

Instantly share code, notes, and snippets.

View greenbrian's full-sized avatar

Brian Green greenbrian

View GitHub Profile
@greenbrian
greenbrian / Ansible - use of template and with_nested
Last active November 3, 2016 16:07
Ansible template usage and with_nested
#roles/myapp/tasks/main.yml
---
- name: manage config files
template: src={{ item[0].src }} dest=/etc/{{ item[1] }}/{{ item[0].dest }}
with_nested:
- config_files
- app_instance