From 9019f2bf9a5053a5b5681c09ca44d99bd57d0dd8 Mon Sep 17 00:00:00 2001 From: Mikhail Naletov Date: Fri, 9 Mar 2018 16:14:03 +0200 Subject: [PATCH] Fixed name error sdtout -> stdout --- lib/ansible/modules/cloud/misc/terraform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/misc/terraform.py b/lib/ansible/modules/cloud/misc/terraform.py index 75a8f53ef42711..a7ae2d4b9dfe82 100644 --- a/lib/ansible/modules/cloud/misc/terraform.py +++ b/lib/ansible/modules/cloud/misc/terraform.py @@ -293,7 +293,7 @@ def main(): else: outputs = json.loads(outputs_text) - module.exit_json(changed=changed, state=state, outputs=outputs, sdtout=out, stderr=err, command=' '.join(command)) + module.exit_json(changed=changed, state=state, outputs=outputs, stdout=out, stderr=err, command=' '.join(command)) if __name__ == '__main__':