Browse code

terraform: fixed typo, name error sdtout -> stdout (#37253) (#37270)

(cherry picked from commit 3bf6c50fa95abcb1ab586f2fce53a99c39854c69)

René Moser authored on 2018/03/16 06:30:04
Showing 1 changed files
... ...
@@ -278,7 +278,7 @@ def main():
278 278
     else:
279 279
         outputs = json.loads(outputs_text)
280 280
 
281
-    module.exit_json(changed=changed, state=state, outputs=outputs, sdtout=out, stderr=err, command=' '.join(command))
281
+    module.exit_json(changed=changed, state=state, outputs=outputs, stdout=out, stderr=err, command=' '.join(command))
282 282
 
283 283
 
284 284
 if __name__ == '__main__':