Launching AWS EC2 Instance using Python
Prerequisites:
Required AWS account and ec2 knowledge
Install boto3 in Python
pip install boto3
python3 -m pip install boto3 ( incase Python3 )
example_ec2 = boto3.client('ec2', 'ca-central-1', aws_access_key_id='', aws_secret_access_key='')
the fu...
mehdipasha.hashnode.dev1 min read