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,7 +334,10 @@ def main():
file_reference = module.params.get('file_reference') file_reference = module.params.get('file_reference')
if inline_data: 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: else:
try: try:
f = open(file_reference, "r") f = open(file_reference, "r")

Loading…
Cancel
Save