1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-03 18:56:55 +00:00

ref: some more comments to examples added

Signed-off-by: Fiehe Christoph  <c.fiehe@eurodata.de>
This commit is contained in:
Fiehe Christoph 2026-03-02 22:24:20 +01:00
parent 0e5bb9b87a
commit cf3a39e430

View file

@ -199,7 +199,8 @@ example_b: "{{ lookup('community.general.merge_variables', '^.+__test_list$', in
# - "test a item 1"
# - "test b item 1"
# Shallow merge variables that end with '__test' and store the result in a variable 'example_c'
# Shallow merge variables that end with '__test', insert newer list elements in front of older ones,
# remove duplicates from lists, and store the result in a variable 'example_c'
example_c: "{{
lookup(
'community.general.merge_variables',
@ -222,8 +223,8 @@ example_c: "{{
# - 1
# - 2
# Deep merge variables that end with '__test', merge list elements by index, ignore overrides,
# apply the strategies 'keep' for type conflicts and 'replace' for other types
# Deep merge variables that end with '__test', merge list elements by index, ignore overrides, apply the strategies
# 'keep' for type conflicts and 'replace' for other types, and store the result in a variable 'example_d'
example_d: "{{
lookup(
'community.general.merge_variables',