Skip to content

Instantly share code, notes, and snippets.

@zeitounator
Created December 14, 2020 16:37
Show Gist options
  • Save zeitounator/c7d4c62c5cd18f80600e5b85ae9602e4 to your computer and use it in GitHub Desktop.
Save zeitounator/c7d4c62c5cd18f80600e5b85ae9602e4 to your computer and use it in GitHub Desktop.
name = {{ item.name }}
username = {{ item.username }}
---
- name: Create my files
hosts: localhost
gather_facts: false
vars:
jinja_var:
- name: a
username: c
- name: b
username: d
tasks:
- name: Create file from jinja
template:
src: "jinja.j2"
dest: "template_{{ item.name }}"
owner: "root"
group: "root"
with_items: "{{ jinja_var }}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment