Pass through YAML parsed object instead of string. (#2347)
This commit is contained in:
parent
d9b4613941
commit
bef9a1c14f
1 changed files with 4 additions and 1 deletions
|
@ -334,7 +334,10 @@ def main():
|
|||
file_reference = module.params.get('file_reference')
|
||||
|
||||
if inline_data:
|
||||
data = inline_data
|
||||
if not isinstance(inline_data, dict) and not isinstance(inline_data, list):
|
||||
data = yaml.load(inline_data)
|
||||
else:
|
||||
data = inline_data
|
||||
else:
|
||||
try:
|
||||
f = open(file_reference, "r")
|
||||
|
|
Loading…
Reference in a new issue