Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hugonz authored Sep 4, 2024
1 parent 5349d0e commit 032bed8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,29 @@ Los módulos están escritos en Python e implementan la complejidad y la intelig

=================
## Tareas
### Estructura

Las tareas tienen:
- un nombre
- un módulo
- opcionalmente, parámetros para este módulo
- modificadores de la tarea (loops, condicionales, delegación, etc)

```yaml
- name: Nombre de la tarea
# nombre del módulo
ansible.builtin.user:
# Parámetros
user: minombredeusuario
state: present
# Al nivel de la tarea, modificadores
delegate_to: localhost
loop:
- 1
- 2
- 3
when: ambiente == 'development'
```
### Variables
Las variables pueden venir de muchos lados:
- El inventario
Expand Down

0 comments on commit 032bed8

Please sign in to comment.