assume-role icon indicating copy to clipboard operation
assume-role copied to clipboard

Easily assume AWS roles in your terminal.

Results 26 assume-role issues
Sort by recently updated
recently updated
newest added

Steps 1) `$ brew install assume-role` result 🍺 /usr/local/Cellar/assume-role/0.3.1: 3 files, 7.6MB, built in 2 seconds 2) `assume-role dev` zsh: segmentation fault assume-role

I needed this tool to support AWS SSO profiles, which isn't supported until the AWS SDK for Go v1 version 1.37. I was going to use govendor and generate a...

Can you please add instructions for building from source? (including for people unfamiliar with Go) I want to try the workaround in https://github.com/remind101/assume-role/issues/54#issuecomment-779355310 but not sure how to build.

Changing the regex scrip to handle the ARN format in non-standard AWS regions. The ARN format used in AWS China and GovCloud is different than in other regions.

A use case for this: 1. Show expiration at bash prompt Requirements: 1. uprev aws-sdk-go to get ExpiresAt() call Compilation will be made via Docker to maximize reproducibility. Dependencies will...

Hi, I ran "assume-role dev" ```bash $ assume-role dev export AWS_ACCESS_KEY_ID="..." export AWS_SECRET_ACCESS_KEY="..." export AWS_SESSION_TOKEN="..." export AWS_SECURITY_TOKEN="..." export ASSUMED_ROLE="dev" # Run this to configure your shell: # eval $(assume-role dev)...

AWS's assume role capability sometimes requires an "external ID" be specified ([documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user_externalid.html).) Currently the `assume-role` tool doesn't have a way for a user to specify that external ID, meaning that...

Hi there, I am using `assume-role` to persist an AWS role and keep from having to re-enter 2FA token for every command. It is working great! Thanks for this very...