From 05824a07540b9f66cc38fc05ff9a585467cd9069 Mon Sep 17 00:00:00 2001 From: Roy Lenferink Date: Sun, 26 Mar 2023 15:42:48 +0200 Subject: [PATCH] merge_variables: Fix example section (#6250) --- plugins/lookup/merge_variables.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/lookup/merge_variables.py b/plugins/lookup/merge_variables.py index f7b784dfe7..cd5fa5b7df 100644 --- a/plugins/lookup/merge_variables.py +++ b/plugins/lookup/merge_variables.py @@ -85,7 +85,7 @@ testb__test_dict: # Merge variables that end with '__test_dict' and store the result in a variable 'example_a' -example_a: "{{ lookup('community.general.merge_variables', '__test_dict') }}" +example_a: "{{ lookup('community.general.merge_variables', '__test_dict', pattern_type='suffix') }}" # The variable example_a now contains: # ports: @@ -93,9 +93,9 @@ example_a: "{{ lookup('community.general.merge_variables', '__test_dict') }}" # - 3 -# Merge variables that end with '__test_list', starting with an initial value and store the result -# in a variable 'example_b' -example_b: "{{ lookup('community.general.merge_variables', '__test_list', initial_value=test_init_list) }}" +# Merge variables that match the '^.+__test_list$' regular expression, starting with an initial value and store the +# result in a variable 'example_b' +example_b: "{{ lookup('community.general.merge_variables', '^.+__test_list$', initial_value=test_init_list) }}" # The variable example_b now contains: # - "list init item 1"