53 releases (15 stable)

new 1.0.14 Apr 22, 2024
1.0.13 Mar 19, 2024
1.0.12 Feb 28, 2024
1.0.10 Dec 21, 2023
0.2.7 Nov 29, 2022

#320 in Command line utilities

Download history 41/week @ 2024-01-08 47/week @ 2024-01-22 22/week @ 2024-01-29 23/week @ 2024-02-05 27/week @ 2024-02-12 139/week @ 2024-02-19 201/week @ 2024-02-26 39/week @ 2024-03-04 82/week @ 2024-03-11 201/week @ 2024-03-18 29/week @ 2024-03-25 80/week @ 2024-04-01 61/week @ 2024-04-08

375 downloads per month
Used in aoss-curl

MIT license

36KB
784 lines

aws-mfa

Version Downloads License Build Release

Authenticate to AWS with MFA 🔐

 aws-mfa
Authenticate to AWS with MFA 🔐

Usage: aws-mfa <COMMAND>

Commands:
  file  Authenticate to AWS with MFA using config and credentials files
  env   Authenticate to AWS with MFA using environment variables
  help  Print this message or the help of the given subcommand(s)

Options:
  -h, --help     Print help
  -V, --version  Print version

Installation

aws-mfa is published on crates.io and can be installed with

cargo install aws-mfa

or via homebrew-tap with

brew install jhandguy/tap/aws-mfa

or downloaded as binary from the releases page.

Usage

Config and credentials files

Add default region in ~/.aws/config:

[profile <profile_name>-noauth]
region = <aws_region>

[profile <profile_name>]
region = <aws_region>

Add basic credentials in ~/.aws/credentials:

[<profile_name>-noauth]
aws_access_key_id = <aws_access_key_id>
aws_secret_access_key = <aws_secret_access_key>

Note: make sure to add the -noauth suffix to the profile name

Run the aws-mfa file command:

aws-mfa file -p <profile_name> -c <mfa_code>

Check generated credentials in ~/.aws/credentials:

cat ~/.aws/credentials
[<profile_name>]
aws_access_key_id = <aws_access_key_id>
aws_secret_access_key = <aws_secret_access_key>
aws_session_token = <aws_session_token>
aws_session_expiration_timestamp = <aws_session_expiration_timestamp>

Environment variables

Export default region and basic credentials as environment variables:

export AWS_REGION=<aws_region>
export AWS_ACCESS_KEY_ID=<aws_access_key_id>
export AWS_SECRET_ACCESS_KEY=<aws_secret_access_key>

Eval the aws-mfa env command:

eval $(aws-mfa env -c <mfa_code>)

Check exported environment variables:

env | grep AWS_
AWS_REGION=<aws_region>
AWS_ACCESS_KEY_ID=<aws_access_key_id>
AWS_SECRET_ACCESS_KEY=<aws_secret_access_key>
AWS_SESSION_TOKEN=<aws_session_token>
AWS_SESSION_EXPIRATION_TIMESTAMP=<aws_session_expiration_timestamp>

Dependencies

~13–22MB
~313K SLoC