Guest User

Untitled

a guest
Jan 17th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. _i = ec2.create_instances(
  2. ImageId=my_ami,
  3. MinCount=1,
  4. MaxCount=1,
  5. KeyName=my_key,
  6. InstanceType="t2.small",
  7. UserData=u_data)
  8.  
  9. #!/bin/bash
  10. echo "Hello World" >> /tmp/data.txt
Add Comment
Please, Sign In to add comment