Skip to content

Instantly share code, notes, and snippets.

@krdlab
Created August 3, 2023 03:27
Show Gist options
  • Save krdlab/f7ee57b4feab46a87c4ef7696746a2d5 to your computer and use it in GitHub Desktop.
Save krdlab/f7ee57b4feab46a87c4ef7696746a2d5 to your computer and use it in GitHub Desktop.
Ansible のテンプレートでループインデックスを使う
{% for t in xs %}
{{ loop.index }} - {{ t }}
{% endfor %}
- hosts: localhost
connection: local
gather_facts: no
vars:
xs:
- id: 1
name: aaa
- id: 2
name: bbb
tasks:
- template:
src: ./test-loop-index.j2
dest: /tmp/test-loop-index
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment