Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nocarryr/aws-identity-manager
Manage credentials for multiple AWS accounts
https://github.com/nocarryr/aws-identity-manager
Last synced: 15 days ago
JSON representation
Manage credentials for multiple AWS accounts
- Host: GitHub
- URL: https://github.com/nocarryr/aws-identity-manager
- Owner: nocarryr
- License: mit
- Created: 2016-03-11T19:07:45.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-18T17:41:41.000Z (over 7 years ago)
- Last Synced: 2024-12-01T11:52:27.845Z (about 1 month ago)
- Language: Python
- Size: 80.1 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/nocarryr/AWS-Identity-Manager.svg?branch=master)](https://travis-ci.org/nocarryr/AWS-Identity-Manager) [![Coverage Status](https://coveralls.io/repos/github/nocarryr/AWS-Identity-Manager/badge.svg?branch=master)](https://coveralls.io/github/nocarryr/AWS-Identity-Manager?branch=master)
# AWS-Identity-Manager
Command line tool to store credentials for multiple AWS accounts and quickly switch between them.## Installation
To install using pip:
```
pip install aws-identity-manager
```
Or download the [latest release](https://github.com/nocarryr/AWS-Identity-Manager/releases/latest) and install by running:
```
python setup.py install
```## Usage
Start the interactive command line tool:
```
awsidentity
```Then use the following commands:
* `save` Save credentials (if any) found in your existing config files for later use
* `add` Allows you to add a new set of credentials (identity)
* `edit` Make changes to existing identity
* `change` Select one of your stored identies and modifies (or creates) the configuration files for most AWS client libraries
* `import` Import identities from a csv file downloaded from the IAM Console (created whenever you add new users)### Additional Info
All of the credentials are saved by default in your home directory:
```
.aws-identity-manager/identities.json
```
The scripts are designed to keep the permissions of this as well as the modified config files secured and only accessible to the current user.
Before any changes are made to any existing AWS config files, they are backed up:
```
~/.aws/credentials.bak
```
This is only done if the backup filename doesn't already exist though. In other words, it would be a good idea to have your credentials somewhere safe before running the script.