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

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...

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-1

To 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