https://github.com/nicor88/aws-infrastructure
AWS infrastructure: Cloudformation, Terraform...
https://github.com/nicor88/aws-infrastructure
aws boto3 cloudformation ec2 emr firehose iam kinesis lambda s3 vpc
Last synced: 21 days ago
JSON representation
AWS infrastructure: Cloudformation, Terraform...
- Host: GitHub
- URL: https://github.com/nicor88/aws-infrastructure
- Owner: nicor88
- License: mit
- Created: 2016-11-22T17:12:03.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-12-16T22:18:57.000Z (almost 7 years ago)
- Last Synced: 2025-04-01T07:49:30.608Z (6 months ago)
- Topics: aws, boto3, cloudformation, ec2, emr, firehose, iam, kinesis, lambda, s3, vpc
- Language: Python
- Homepage:
- Size: 247 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aws-infrastructure
Collection of resources to manage AWS infrastructure## Requirements
* Python >= 3.4
* Install requirements: `pip install -r requirements.txt`## AWS Profiles
To manage different profiles create a file __~/.aws/credentials__ with this content:[default]
aws_access_key_id=foo
aws_secret_access_key=bar
region = us-east-1[your_other_profile]
aws_access_key_id=foo2
aws_secret_access_key=bar2
region = us-east-1To point to the right profile use ENV variables
export AWS_PROFILE=your_other_profile
# this will overwrite the region in the profile configuration
export AWS_DEFAULT_REGION=eu-west-1