Skip to content

Commit

Permalink
terraform: fixed typo, name error sdtout -> stdout (ansible#37253)
Browse files Browse the repository at this point in the history
  • Loading branch information
okgolove authored and resmo committed Mar 10, 2018
1 parent c5c78ab commit 3bf6c50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/modules/cloud/misc/terraform.py
Expand Up @@ -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__':
Expand Down

0 comments on commit 3bf6c50

Please sign in to comment.