Assume an AWS IAM role and execute a command with the assumed credentials
Project description
Assume an AWS IAM role and execute a command with the assumed credentials. AWS API credentials to assume the role must be set as environment variables, and the command and arguments are executed in the same manner as envdir.
envassume takes the effort out of assuming an AWS role from the command-line and copying/pasting the returned credentials to run a command. If you often need to do this:-
$ aws sts assume-role --role-arn arn:aws:iam::123456789012:role/s3_access --role-session-name s3_access_session { "AssumedRoleUser": { "AssumedRoleId": "xxxxxxxxxxxxxxxxxxxxx:s3_access_session", "Arn": "arn:aws:sts::123456789012:assumed-role/s3_access/s3_access_session" }, "Credentials": { "SecretAccessKey": "mmm", "SessionToken": "nnn", "Expiration": "2019-02-26T00:00:00Z", "AccessKeyId": "ooo" } } $ AWS_ACCESS_KEY_ID='ooo' AWS_SECRET_ACCESS_KEY='mmm' AWS_SESSION_TOKEN='nnn' aws s3 ls
It can be shortened to:-
$ envassume arn:aws:iam::123456789012:role/s3_access aws s3 ls
Useful if you often need to test roles, or run scripts with assumed roles on AWS instances using credentials from the instance profile.
Install
pip install envassume
Usage
usage: envassume [-h] [-i EXTERNAL_ID] [ARN] command [argument [argument ...]] optional arguments: -h, --help show this help message and exit -i, --id EXTERNAL_ID external id ARN AWS role ARN to assume (required if not set by environment variable) environment variables: environment must contain valid AWS API credentials AWS_ASSUME_ROLE=ARN no options can be present before the command if this is defined AWS_ASSUME_ID=EXTERNAL_ID
License
Copyright (c) 2017 Warren Moore
This software may be redistributed under the terms of the MIT License. See the file LICENSE for details.
Contact
@wamonite - twitter \_______.com - web warren____________/ - email
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file envassume-1.0.7.tar.gz
.
File metadata
- Download URL: envassume-1.0.7.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97f5f3f475759c159388c715354c4fc94ef13878698b8fca7a2f53ff98c9562f |
|
MD5 | 4caa294d39d6b5e7cd88acb8bb92e730 |
|
BLAKE2b-256 | 6e0f8ce47b2b34a73b4d8590f7fbf5cf12d1f9f36b0471d4f6563038423185ca |
File details
Details for the file envassume-1.0.7-py3-none-any.whl
.
File metadata
- Download URL: envassume-1.0.7-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 149babb09b2aaaed4c92b7c363645a22051448850d9468c96d3fb02661e0cfdd |
|
MD5 | a8b66e0b39774f164a75b4a68037c008 |
|
BLAKE2b-256 | ffe823156f34a3db79d929014da30898d9cdbeec36c882b36d5119fc9b79f424 |