diff options
Diffstat (limited to 'test/integration/targets/no_log/no_log_suboptions.yml')
-rw-r--r-- | test/integration/targets/no_log/no_log_suboptions.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/integration/targets/no_log/no_log_suboptions.yml b/test/integration/targets/no_log/no_log_suboptions.yml index e67ecfe21b..338a871eed 100644 --- a/test/integration/targets/no_log/no_log_suboptions.yml +++ b/test/integration/targets/no_log/no_log_suboptions.yml @@ -5,20 +5,20 @@ tasks: - name: Task with suboptions module: - secret: GLAMOROUS + secret: "{{ s106 }}" subopt_dict: - str_sub_opt1: AFTERMATH + str_sub_opt1: "{{ s107 }}" str_sub_opt2: otherstring nested_subopt: - n_subopt1: MANPOWER + n_subopt1: "{{ s101 }}" subopt_list: - - subopt1: UNTAPPED + - subopt1: "{{ s102 }}" subopt2: thridstring - - subopt1: CONCERNED + - subopt1: "{{ s103 }}" - name: Task with suboptions as string module: - secret: MARLIN - subopt_dict: str_sub_opt1=FLICK + secret: "{{ s104 }}" + subopt_dict: str_sub_opt1={{ s105 }} |