Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months ago
JSON representation
automating AWS with Python using boto3 library
- Host: GitHub
- URL: https://github.com/tejas-kr/automating-AWS-with-Python
- Owner: tejas-kr
- License: mit
- Created: 2017-06-18T12:06:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-18T12:34:59.000Z (over 7 years ago)
- Last Synced: 2024-04-27T23:57:24.265Z (7 months ago)
- Topics: automated, aws, aws-ec2, boto3, linux, python3, shell-script
- Language: Python
- Size: 1.95 KB
- Stars: 39
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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_KEYYou 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.