Add plugin_type for ansible-doc (#41)
Add plugin_type for ansible-doc Reviewed-by: https://github.com/apps/ansible-zuulpull/44/head
parent
472a8050ad
commit
67b4ae93f2
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
trivial:
|
||||
- add missing plugin_type for lookup plugins.
|
|
@ -15,6 +15,7 @@ __metaclass__ = type
|
|||
DOCUMENTATION = """
|
||||
name: get_path
|
||||
author: Bradley Thornton (@cidrblock)
|
||||
plugin_type: lookup
|
||||
version_added: "1.0.0"
|
||||
short_description: Retrieve the value in a variable using a path
|
||||
description:
|
||||
|
|
|
@ -15,6 +15,7 @@ __metaclass__ = type
|
|||
DOCUMENTATION = """
|
||||
name: index_of
|
||||
author: Bradley Thornton (@cidrblock)
|
||||
plugin_type: lookup
|
||||
version_added: "1.0.0"
|
||||
short_description: Find the indices of items in a list matching some criteria
|
||||
description:
|
||||
|
|
|
@ -15,6 +15,7 @@ __metaclass__ = type
|
|||
DOCUMENTATION = """
|
||||
name: to_paths
|
||||
author: Bradley Thornton (@cidrblock)
|
||||
plugin_type: lookup
|
||||
version_added: "1.0.0"
|
||||
short_description: Flatten a complex object into a dictionary of paths and values
|
||||
description:
|
||||
|
|
|
@ -10,6 +10,7 @@ __metaclass__ = type
|
|||
DOCUMENTATION = """
|
||||
name: validate
|
||||
author: Ganesh Nalawade (@ganeshrn)
|
||||
plugin_type: lookup
|
||||
version_added: "1.0.0"
|
||||
short_description: Validate data with provided criteria
|
||||
description:
|
||||
|
|
Loading…
Reference in New Issue