mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-23 19:01:26 -07:00
Make env param a dict type instead of list
Also modifies param type checking code to remove whitespace from around params before splitting them into k=v pairs. Fixes #8199
This commit is contained in:
parent
a230a3fad9
commit
8dafacd4e9
2 changed files with 3 additions and 5 deletions
|
@ -808,7 +808,7 @@ class AnsibleModule(object):
|
|||
self.fail_json(msg="unable to evaluate dictionary for %s" % k)
|
||||
self.params[k] = result
|
||||
elif '=' in value:
|
||||
self.params[k] = dict([x.split("=", 1) for x in value.split(",")])
|
||||
self.params[k] = dict([x.strip().split("=", 1) for x in value.split(",")])
|
||||
else:
|
||||
self.fail_json(msg="dictionary requested, could not parse JSON or key=value")
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue