From 5d1e0eedae25d6f5cec470d65600954fdfc782b3 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Fri, 20 Dec 2024 17:32:20 -0500 Subject: [PATCH] Updates --- survey.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/survey.yml b/survey.yml index 32fb466..0143e66 100644 --- a/survey.yml +++ b/survey.yml @@ -25,6 +25,13 @@ ansible.builtin.debug: 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' ansible.builtin.debug: var: aap_survey_integer