From 934462a5db96315796b7bff31024adbcc370f5c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Moser?= Date: Thu, 15 Mar 2018 22:30:04 +0100 Subject: [PATCH] terraform: fixed typo, name error sdtout -> stdout (#37253) (#37270) (cherry picked from commit 3bf6c50fa95abcb1ab586f2fce53a99c39854c69) --- 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 cfc26dfd18d..d7d48f44e60 100644 --- a/lib/ansible/modules/cloud/misc/terraform.py +++ b/lib/ansible/modules/cloud/misc/terraform.py @@ -278,7 +278,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__':