Updates
Some checks failed
Ansible Code Pipeline / Ansible-Development-Pipeline (ansible-dev-centos9) (push) Failing after 12s

This commit is contained in:
Chris Hammer 2024-12-20 17:32:20 -05:00
parent 26da176a69
commit 5d1e0eedae

View File

@ -25,6 +25,13 @@
ansible.builtin.debug: ansible.builtin.debug:
var: aap_survey_choose_multiple var: aap_survey_choose_multiple
- name: Loop through selections and act if its the 'World'
ansible.builtin.debug:
msg: "Hello {{ item }}"
loop: "{{ aap_survey_choose_multiple }}"
when:
- "'World' in item"
- name: Example of 'Integer' - name: Example of 'Integer'
ansible.builtin.debug: ansible.builtin.debug:
var: aap_survey_integer var: aap_survey_integer