Pass through YAML parsed object instead of string. (#2347)

pull/18777/head
David Edmonds 8 years ago committed by Matt Clay
parent 41d68b5498
commit ec0fff49ea

@ -334,6 +334,9 @@ def main():
file_reference = module.params.get('file_reference')
if 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:

Loading…
Cancel
Save