sesstok

package module
v1.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 6, 2022 License: MIT Imports: 10 Imported by: 0

README

sesstok

A CLI tool to get AWS onetime session token on MFA enabled environment and update it automatically.

See also: https://aws.amazon.com/premiumsupport/knowledge-center/authenticate-mfa-cli/

Features

  • Get STS onetime session token
  • Update AWS credentials file automatically once it has retrieved a session token
    • It updates following items
      • aws_access_key_id
      • aws_secret_access_key
      • aws_session_token
  • RC file of this tool is encrypted by passphrase for security

Usage

Usage:
  sesstok [OPTIONS] [TokenCode]

Application Options:
  -r, --rc=          configuration file path of sesstok (default: $HOME/.sesstok.rc)
  -c, --credentials= file path of AWS credentials (default: $HOME/.aws/credentials)
  -p, --password     use master password; if you've configured a master password, this option has to be specified'
  -P=                (NOT RECOMMENDED) pass the master password
  -d, --duration=    duration of STS session token (unit: second) (default: 86400)
  -t, --token-only   only retrieve STS session token (i.e. don't update credentials file)
  -s, --silent       silent mode
  -v, --version      show the version
      --dumprc       dump rc file contents
      --init         initialize a configuration (this option can be used with -r (--rc) options)

Help Options:
  -h, --help         Show this help message

usage

After execute the command, it updates AWS credentials file automatically.

updated_credentials

Initializing

When you run this tool for the first time, it requires the initializing procedure.

initializing

  • master password: password to encrypt a rc file
  • Access Key ID: AWS access key ID for assume role
  • Secret Access Key: AWS secret access key for assume role
  • MFA serial: MFA serial number (i.e. ARN)
  • Profile Name: AWS profile name (this tool updates AWS credentials automatically for this specified profile)
To assume role for another role

Please configure the AWS credentials information (e.g. ~/.aws/credentials), like so:

[your-profile-name]
role_arn       = arn:aws:iam::${AWS_ACCOUNT_ID}:role/${ROLE_TO_ASSUME_ROLE}
source_profile = $PROFILE_NAME_OF_SESSTOK_USING

(please replace your-profile-name, $AWS_ACCOUNT_ID, $ROLE_TO_ASSUME_ROLE and $PROFILE_NAME_OF_SESSTOK according to your environment)

Then, after the session token retrieving, it can use the AWS resource as your-profile-name role.

FAQ

How to switch multiple AWS profiles

Please switch the rc files.

How to build
make build VERSION=x.y.z

Pre-built binaries are here.

LICENSE

The MIT License (MIT)
Copyright © 2019 moznion, http://moznion.net/ <moznion@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ErrTokenCodeMissing is an error to indicate the mandatory argument `TokenCode` is missing.
	ErrTokenCodeMissing = errors.New("the required argument `TokenCode` was not provided")
)

Functions

func Run

func Run(opts *internal.Options) error

Run is the entry point of this application.

Types

This section is empty.

Directories

Path Synopsis
cmd

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL