update review 1
parent
e7d50b8ce6
commit
f3e851d544
|
@ -44,6 +44,7 @@ Parameters
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">list</span>
|
<span style="color: purple">list</span>
|
||||||
/ <span style="color: purple">elements=dictionary</span>
|
/ <span style="color: purple">elements=dictionary</span>
|
||||||
|
/ <span style="color: red">required</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
@ -63,6 +64,7 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">raw</span>
|
<span style="color: purple">raw</span>
|
||||||
|
/ <span style="color: red">required</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
@ -81,6 +83,7 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">string</span>
|
<span style="color: purple">string</span>
|
||||||
|
/ <span style="color: red">required</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
@ -99,6 +102,7 @@ Parameters
|
||||||
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
<a class="ansibleOptionLink" href="#parameter-" title="Permalink to this option"></a>
|
||||||
<div style="font-size: small">
|
<div style="font-size: small">
|
||||||
<span style="color: purple">string</span>
|
<span style="color: purple">string</span>
|
||||||
|
/ <span style="color: red">required</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
|
@ -28,16 +28,20 @@ DOCUMENTATION = """
|
||||||
- For example C(facts_source|ansible.utils.consolidate(fail_missing_match_key=False))), in this case C(facts_source) represents this option.
|
- For example C(facts_source|ansible.utils.consolidate(fail_missing_match_key=False))), in this case C(facts_source) represents this option.
|
||||||
type: list
|
type: list
|
||||||
elements: dict
|
elements: dict
|
||||||
|
required: True
|
||||||
suboptions:
|
suboptions:
|
||||||
data:
|
data:
|
||||||
description: Specify facts data that gets consolidated.
|
description: Specify facts data that gets consolidated.
|
||||||
type: raw
|
type: raw
|
||||||
|
required: True
|
||||||
match_key:
|
match_key:
|
||||||
description: Specify key to match on.
|
description: Specify key to match on.
|
||||||
type: str
|
type: str
|
||||||
|
required: True
|
||||||
prefix:
|
prefix:
|
||||||
description: Specify the prefix with which the result set be created.
|
description: Specify the prefix with which the result set be created.
|
||||||
type: str
|
type: str
|
||||||
|
required: True
|
||||||
fail_missing_match_key:
|
fail_missing_match_key:
|
||||||
description: Fail if match_key is not found in a specific data set.
|
description: Fail if match_key is not found in a specific data set.
|
||||||
type: bool
|
type: bool
|
||||||
|
|
Loading…
Reference in New Issue