Buscar..


with_items - lista simple

Se puede with_items bucle with_items en ansible para hacer un bucle fácilmente sobre los valores.

- name: Add lines to this file
  lineinfile: dest=/etc/file line={{ item }} state=present
  with_items:
    - Line 1
    - Line 2
    - Line 3

with_items - lista predefinida

También puede recorrer una lista de variables.

Desde vars:

favorite_snacks:
  - hotdog
  - ice cream
  - chips

y luego el bucle:

- name: create directories for storing my snacks
  file: path=/etc/snacks/{{ item }} state=directory
  with_items: '{{ favorite_snacks }}'

Si está utilizando Ansible 2.0+, debe usar comillas alrededor de la llamada a la variable.

with_items - diccionario predefinido

Es posible crear bucles más complejos con diccionarios.

Desde vars:

packages:
  - present: tree
  - present: nmap
  - absent: apache2

entonces el bucle:

- name: manage packages
  package: name={{ item.value }} state={{ item.key }}
  with_items: '{{ packages }}'

O, si no te gusta usar el valor clave:

vars

packages:
  - name: tree
    state: present
  - name: nmap
    state: present
  - name: apache2
    state: absent

entonces el bucle:

- name: manage packages
  package: name={{ item.name }} state={{ item.state }}
  with_items: '{{ packages }}'

with_items - diccionario

Puedes usar un diccionario para un bucle un poco más complejo.

- name: manage packages
  package: name={{ item.name }} state={{ item.state }}
  with_items:
    - { name: tree, state: present }
    - { name: nmap, state: present }
    - { name: apache2, state: absent }

Bucles anidados

Puedes crear bucles anidados usando with_nested .

de vars:

keys:
  - key1
  - key2
  - key3
  - key4

entonces el bucle:

- name: Distribute SSH keys among multiple users
  lineinfile: dest=/home/{{ item[0] }}/.ssh/authorized_keys line={{ item[1] }} state=present
  with_nested:
    - [ 'calvin', 'josh', 'alice' ]
    - '{{ keys }}'

Esta tarea recorrerá cada usuario y llenará su archivo authorized_keys con las 4 teclas definidas en la lista.



Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow