AWS MFA credential helper — exchange long-term credentials for temporary STS tokens
Project description
aws-xfa
Exchange long-term AWS credentials for temporary STS tokens — handles MFA automatically, integrates with 1Password, and can run as a background daemon that keeps credentials fresh without any manual steps.
Install
pip install aws-xfa
First run
If you don't have ~/.aws/credentials yet, just run:
aws-xfa # sets up the "default" profile
aws-xfa main # sets up a profile named "main"
The profile name you pass (or default when omitted) determines all section names in your credentials file. aws-xfa will prompt you for everything:
AWS Access Key ID: AKIA...
AWS Secret Access Key: ************
MFA device ARN (e.g. arn:aws:iam::123456789012:mfa/username): arn:aws:iam::...
AWS region (e.g. us-east-1): us-east-1
Would you like to add sub-profiles? [y/N]:
Use 1Password CLI to automatically fetch MFA codes? [y/N]:
Then it calls AWS STS and writes your temporary credentials to ~/.aws/credentials.
Existing credentials file
If you already have ~/.aws/credentials with a [default] section, aws-xfa will migrate it automatically — creating [default-long-term] for your permanent keys, and using [default] for the temporary STS credentials.
How profile names map to sections:
| Command | Profile | Long-term section | Short-term section |
|---|---|---|---|
aws-xfa |
default |
[default-long-term] |
[default] |
aws-xfa main |
main |
[main-long-term] |
[main] |
Your credentials file structure after setup (using the default profile):
[default-long-term]
aws_access_key_id = AKIA... # your permanent keys — never exposed to AWS CLI
aws_secret_access_key = ...
aws_mfa_device = arn:aws:iam::123456789012:mfa/username
[default]
aws_access_key_id = ASIA... # temporary — written by aws-xfa after each STS call
aws_secret_access_key = ...
aws_session_token = ...
aws_security_token = ...
expiration = 2026-03-04 22:00:00
Daily usage
aws-xfa
# Enter AWS MFA code for device [...]: 123456
# Success! Your credentials will expire in 12h 0m 0s at: 2026-03-05 10:00:00 UTC
Running again while credentials are still valid does nothing:
aws-xfa
# Your credentials are still valid for 11h 55m 34s, they will expire at ...
For a named profile ([main-long-term] → [main]):
aws-xfa main
Force refresh before expiry:
aws-xfa --force
aws-xfa main --force
Sub-profiles
If you use AWS role assumption (e.g. separate prod/stage accounts), aws-xfa can create sub-profiles that reference your parent profile as source_profile.
Sub-profiles are named {profile}-{name} — for example, profile main with sub-profile prod becomes main-prod. Profile default with sub-profile staging becomes default-staging.
During first-run setup, aws-xfa asks if you want to add sub-profiles. You can also add them at any time:
aws-xfa add-subprofile main # add sub-profiles under the "main" profile
aws-xfa add-subprofile default # add sub-profiles under the "default" profile
The interactive prompt:
Sub-profile name (e.g. prod, stage): prod
Role ARN to assume (e.g. arn:aws:iam::123456789012:role/role-name): arn:aws:iam::263649228919:role/role-name
Region [us-west-1]:
Added sub-profile 'main-prod'
Add another sub-profile? [y/N]: n
This writes to ~/.aws/config only (no credentials changes):
[profile main-prod]
source_profile = main
region = us-west-1
role_arn = arn:aws:iam::263649228919:role/role-name
output = json
1Password integration
Skip manual OTP entry entirely. If you answered y during setup, you're already configured. To enable it later:
aws-xfa --1pass
# Enter 1Password item name for profile 'default': AWS MFA
The item name is saved to ~/.config/aws-xfa/config.json. From then on, aws-xfa fetches the OTP automatically on every run — no --1pass flag needed.
aws-xfa # OTP fetched from 1Password silently (default profile)
aws-xfa main # same for named profile
Requires the op CLI to be installed and signed in. If op fails, aws-xfa falls back to prompting you manually.
Using a YubiKey for CLI MFA
A FIDO/U2F security key cannot be used here. AWS STS (
GetSessionToken/AssumeRole) only accepts a 6-digit TOTP — FIDO works only for Console sign-in. If your profile'saws_mfa_deviceis a:u2f/ARN, aws-xfa stops with a clear message. Register a separate virtual MFA (OATH-TOTP) device for the CLI; you can keep the FIDO key for the Console (IAM allows up to 8 MFA devices per user).
A YubiKey 5 (including the FIPS series) can act as that virtual MFA device via its OATH-TOTP application, and aws-xfa can pull the code from it with ykman (≥ 5.x):
-
In IAM, Assign MFA device → Authenticator app, and reveal the secret key (don't scan the QR).
-
Add it to the YubiKey's OATH app (prefer importing the
otpauth://URI / QR over passing the secret on the command line, which leaks it into shell history):ykman oath accounts add --issuer "Amazon Web Services" --oath-type TOTP \ --digits 6 --algorithm SHA1 --touch "your-iam-username"
-
Finish IAM registration by entering two consecutive codes (
ykman oath accounts code --single "<label>"). -
FIPS keys only: the OATH applet must have an access code; cache it once so codes generate non-interactively:
ykman oath access remember
-
Point the profile's
aws_mfa_deviceat the new:mfa/ARN, then configure aws-xfa:aws-xfa --ykman # one-time: pick the OATH account label, saved to config.json aws-xfa # from then on: touch the key when prompted, code is fetched
The chosen source is saved per profile (mfa_source + ykman_account in ~/.config/aws-xfa/config.json). --ykman and --1pass are mutually exclusive. The YubiKey path is interactive only — the auto-refresh daemon requires 1Password (a touch can't be automated).
Troubleshooting: codes depend on the host clock — keep it NTP-synced. AWS rejects a TOTP reused within its 30-second window, so on a transient error wait for a fresh code rather than retrying immediately.
AWS IAM Identity Center (SSO)
aws-xfa also manages SSO profiles. This is the phishing-resistant, FedRAMP/GovCloud-friendly path: your security key (FIDO) authenticates the browser sign-in, and aws-xfa materializes the resulting short-lived role credentials into ~/.aws/credentials — so tools that only read static credentials keep working.
One-time, point a profile at Identity Center (writes ~/.aws/config):
aws configure sso # creates an [sso-session] + [profile <name>]
Then aws-xfa handles it like any other profile:
aws-xfa my-sso-profile
# (if the SSO token is stale) launches 'aws sso login' -> browser + security key
# Success! Your credentials will expire in 0h 59m at: ...
aws-xfa auto-detects SSO from ~/.aws/config (a profile with sso_account_id + sso_role_name); no flag needed. You can pin it with an auth_type of sso or sts per profile in ~/.config/aws-xfa/config.json.
Notes:
- Requires AWS CLI v2 on your PATH (aws-xfa uses
aws configure export-credentialsandaws sso login). --1pass/--ykman/--durationare ignored for SSO profiles (no OTP leg; the session length is set by the permission set).- The auto-refresh daemon refuses SSO profiles —
aws sso loginneeds an interactive browser + security key and can't run unattended.
For a full walkthrough (registering a FIDO security key, assume-role sub-profiles, GovCloud/FIPS, and troubleshooting), see SSO_CONFIGURATION.md.
Auto-refresh daemon
Keep credentials fresh in the background — no manual intervention ever. The daemon wakes 5 minutes before expiry and renews automatically.
Requires 1Password to be configured for the profile first (the daemon runs unattended).
aws-xfa daemon install default # configure 1Password if needed, then install and start
aws-xfa daemon status default # show running status
aws-xfa daemon stop default # stop without removing config
aws-xfa daemon delete default # stop and remove all artifacts and logs
What gets installed per platform:
| Platform | Persistence method |
|---|---|
| macOS | LaunchAgent plist (~/Library/LaunchAgents/com.user.aws-xfa-daemon-PROFILE.plist) |
| Linux | systemd user unit (falls back to double-fork on systems without systemd) |
| Windows | detached process + schtasks on-logon scheduled task |
Error logs: ~/.config/aws-xfa/errors-PROFILE.log
On Linux without systemd (Alpine, OpenRC, WSL), the daemon won't survive reboot automatically. The install command prints the command to add to your init scripts.
Options
| Flag | Description |
|---|---|
--force |
Refresh even if credentials are still valid |
--1pass |
Configure 1Password for this profile (one-time setup) |
--ykman |
Use a YubiKey (ykman OATH-TOTP) for this profile (one-time setup; mutually exclusive with --1pass) |
--duration SECONDS |
Session duration (default: 43200 = 12 h, min: 900, max: 129600) |
--log-level debug |
Verbose output |
Environment variables:
| Variable | Effect |
|---|---|
MFA_STS_DURATION |
Session duration (same as --duration) |
AWS_REGION / AWS_DEFAULT_REGION |
Region used for the STS endpoint |
AWS_SHARED_CREDENTIALS_FILE |
Override the default ~/.aws/credentials path |
AWS_CONFIG_FILE |
Override the default ~/.aws/config path |
CLI flags take precedence over environment variables.
Before you use this tool
Please read these before deploying aws-xfa in any environment:
- DISCLAIMER.md — no warranty; you are responsible for your AWS credentials and account security
- SECURITY.md — how to report vulnerabilities
- LICENSE — Zero-Clause BSD (0BSD)
- CONTRIBUTING.md — how to contribute
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws_xfa-1.3.0.tar.gz.
File metadata
- Download URL: aws_xfa-1.3.0.tar.gz
- Upload date:
- Size: 183.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a2fcae3c69216148a57f1c4ab56d44e83a683c2036085fe967ec5c78a763e3e
|
|
| MD5 |
35d30cc54789c44a8ce2d12c01d69048
|
|
| BLAKE2b-256 |
be87416761562ff806c145462129df910df3ee3e6aa87914f6eeea195500a15b
|
File details
Details for the file aws_xfa-1.3.0-py3-none-any.whl.
File metadata
- Download URL: aws_xfa-1.3.0-py3-none-any.whl
- Upload date:
- Size: 29.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e868c70fa6f57776ee08bc751ecba4b085c1b4ccf6fb8b3bb678afa952dc1ec
|
|
| MD5 |
406df41c0a1af9e97a9d4f910e3ec28e
|
|
| BLAKE2b-256 |
74da64e11a84732785fa55119f008ca0fb43dbbead482d3ad3fa56d955d1ca10
|