mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
15f7e25b3c
* Update docs helper. Automate generation of 'Merging lists of dictionaries'. * Updated helper/lists_mergeby/playbook.yml, list of examples and templates. See playbook.yml on how to create *.out files, test examples and generate the REST file filter_guide_abstract_informations_merging_lists_of_dictionaries.rst * Generated REST file copied to directory rst * Simplified examples. The common lists are published only once. Only the expressions are published instead of the whole tasks. * To change the content of the section 'Merging lists of dictionaries' update template filter_guide_abstract_informations_merging_lists_of_dictionaries.rst.j2 and run the playbook. * Deleted rst/examples/lists_mergeby. Not needed anymore. * Update docs/docsite/helper/lists_mergeby/filter_guide_abstract_informations_merging_lists_of_dictionaries.rst.j2 Co-authored-by: Felix Fontein <felix@fontein.de> * Update docs/docsite/rst/filter_guide_abstract_informations_merging_lists_of_dictionaries.rst Co-authored-by: Felix Fontein <felix@fontein.de>
19 lines
338 B
YAML
19 lines
338 B
YAML
list1:
|
|
- name: myname01
|
|
param01:
|
|
x: default_value
|
|
y: default_value
|
|
list:
|
|
- default_value
|
|
- name: myname02
|
|
param01: [1, 1, 2, 3]
|
|
|
|
list2:
|
|
- name: myname01
|
|
param01:
|
|
y: patch_value
|
|
z: patch_value
|
|
list:
|
|
- patch_value
|
|
- name: myname02
|
|
param01: [3, 4, 4, {key: value}]
|