At my job, I am required to deploy socks5 server on EC2 instances hosted on Alicloud (competitor to AWS). For each EC2 instance, I am required to do the following:
- SSH to the IP of an EC2 instance
- wget my socks5 server which is a perl script ,
- execute this perl script.
I have to deploy about 50 EC2 instances a day. Aside from Docker (which I have been told is an overkill for my task), are there libraries or frameworks out there that allows me to do so?
EDIT
Fabric is a great tool