mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +00:00
Support any Mapping for with_dict lookup.
This resolves 3939348286 breaking `with_dict: hostvars`.
This commit is contained in:
@@ -17,6 +17,8 @@
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
import collections
|
||||
|
||||
from ansible.errors import AnsibleError
|
||||
from ansible.plugins.lookup import LookupBase
|
||||
|
||||
@@ -24,7 +26,8 @@ class LookupModule(LookupBase):
|
||||
|
||||
def run(self, terms, varibles=None, **kwargs):
|
||||
|
||||
if not isinstance(terms, dict):
|
||||
# Expect any type of Mapping, notably hostvars
|
||||
if not isinstance(terms, collections.Mapping):
|
||||
raise AnsibleError("with_dict expects a dict")
|
||||
|
||||
return self._flatten_hash_to_list(terms)
|
||||
|
||||
Reference in New Issue
Block a user