Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tejas-kr/automating-AWS-with-Python

automating AWS with Python using boto3 library
https://github.com/tejas-kr/automating-AWS-with-Python

automated aws aws-ec2 boto3 linux python3 shell-script

Last synced: about 2 months ago
JSON representation

automating AWS with Python using boto3 library

Awesome Lists containing this project

README

        

# automating-AWS-with-Python
automating AWS with Python using boto3 library

# You have to add credentials and config files in the .aws directory. Just paste the following code
Create the credentials file. By default, its location is at ~/.aws/credentials:


[default]
aws_access_key_id = YOUR_ACCESS_KEY
aws_secret_access_key = YOUR_SECRET_KEY

You may also want to set a default region. This can be done in the configuration file. By default, its location is at ~/.aws/config:


[default]
region=us-east-1

## Note
You can automate this script using crontab in linux. I don't know about windows and mac but you can surely google it.