0.0.5 • Published 5 years ago

astu v0.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

ASTU a.k.a. AWS security token utility

A tool to help developers easily work with temporary security tokens between different accounts in AWS.

Prerequisites

All master credential profiles are profiles in the ".aws/credentials" -file that have the right to change role in one or several AWS accounts. Basically it uses AWS STS to generate a temporary token.

These profiles needs to be defined in ".aws/credentials" -file. If there are MFA then the serial must be included.

[a_master_credential]
aws_access_key_id = <access-key>
aws_secret_access_key = <secret-access-key>
mfa_serial = arn:aws:iam::<account-id>:mfa/<iam-user-name>
[a_role_in_an_account]
region = eu-west-1
role_arn = arn:aws:iam::<account-id>:role/<role>
source_profile = a_master_credential-temp
output = json

The *-temp profile is the temporary token that has been generated.

Installation

It is preferable to install it globally if there are many projects using it, but otherwise it can be installed within a project. However, note that the configuration is stored in the user home directory, so if there are several instances of it, they will all use the same configuration file.

> npm install -g astu

Usage

The command syntax is using the following pattern:

> astu [options] [commands]

Options

--version ( or: -V ) Output the version number

> astu --version

--verbose ( or: -v ) Add this to any command to see more details

> astu --version

--help ( or: -h ) Output usage information

> astu --version

Commands

( "" ) If no arguments are entered the usage information will displayed (see options -h, --help)*

> astu

( \<profile> ) Generate a temporary token for a specific given master credential profile

> astu <profile>

generate *( or: g )* Generate temporary token for all configured master credential profiles (see config)

> astu [options] g|generate

information *( or: i )* Details of current environment and settings

> astu [options] i|information

config *( or: c )* Select default profile and master credentials

> astu [options] c|config

update *( or: u )* The tool will indicate when running if any update is available, if so, this command will update to latest version.

> astu [options] u|update
0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago