summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMikhail Naletov <36846182+okgolove@users.noreply.github.com>2018-03-11 00:44:37 +0200
committerRené Moser <mail@renemoser.net>2018-03-10 23:44:37 +0100
commit3bf6c50fa95abcb1ab586f2fce53a99c39854c69 (patch)
tree98704a1e0b659f74a411bb97b212c84785bcd83d /lib
parentc5c78ab045b964fbb048d8a380533a649ad6f5ff (diff)
downloadansible-3bf6c50fa95abcb1ab586f2fce53a99c39854c69.tar.gz
terraform: fixed typo, name error sdtout -> stdout (#37253)
Diffstat (limited to 'lib')
-rw-r--r--lib/ansible/modules/cloud/misc/terraform.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/modules/cloud/misc/terraform.py b/lib/ansible/modules/cloud/misc/terraform.py
index 75a8f53ef4..a7ae2d4b9d 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__':