J'essaie d'itérer à travers le nombre d'entrées dynamiquement dans un tableau et d'utiliser la sortie comme un index.
Je suis presque sûr que je fais quelque chose de mal.
Comment puis-je assigner une variable à la fin de la séquence qui représente le compte de mon tableau actuel ?
ansible-playbook 2.9.6
run.yml :
---
- hosts: localhost
tasks:
- name: Import config
include_vars:
file: ./config.yml
- name: DEBUG
debug: msg="{{ item[0].team_name }}: {{ item[0].applications.name }}: index: {{ item[1] }}"
with_nested:
- "{{ teams }}"
- "{{ lookup('sequence', 'start=1 end='+(item[0].applications|length))|string }}"
config.yml :
teams:
- team_name: Name-of-Team_A
applications:
- name: app_name_a
- name: app_name_b
- team_name: Name-of-Team_B
applications:
- name: app_name_c
- name: app_name_d
Exécution :
ansible-playbook run.yml
PLAY [localhost] ********************************************************************************************************************************************************************
TASK [Gathering Facts] **************************************************************************************************************************************************************
ok: [localhost]
TASK [Import config] ****************************************************************************************************************************************************************
ok: [localhost]
TASK [DEBUG] ************************************************************************************************************************************************************************
fatal: [localhost]: FAILED! => {"msg": "'item' is undefined"}
PLAY RECAP **************************************************************************************************************************************************************************
localhost : ok=2 changed=0 unreachable=0 failed=1 skipped=0 rescued=0 ignored=0
Résultat souhaité :
msg: 'Name-of-Team_A: app_name_a: index: 1'
msg: 'Name-of-Team_A: app_name_b: index: 2'
msg: 'Name-of-Team_B: app_name_c: index: 1'
msg: 'Name-of-Team_B: app_name_d: index: 2'
1 votes
Quel est le résultat attendu ?