We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd712d2 commit a5dde3bCopy full SHA for a5dde3b
roles/resource_module/filter_plugins/to_argspec.py
@@ -24,6 +24,8 @@ def dive(obj, required=False):
24
result['options'][propkey] = dive(propval, required)
25
elif obj['type'] == 'array':
26
result['options'] = {}
27
+ if obj['elements']:
28
+ result['elements'] = obj['elements']
29
if not 'items' in obj:
30
raise AnsibleFilterError('missing items key in array')
31
if not 'properties' in obj['items']:
0 commit comments