Created
February 18, 2025 08:29
-
-
Save TheBigRoomXXL/f37406fb46790710e649fba258453deb to your computer and use it in GitHub Desktop.
Assume an AWS profile from SSO with a single command and autocomplete
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
assume () { | |
aws sso login --profile $1 | |
eval "$(aws configure export-credentials --profile $1 --format env)" | |
} | |
_assume() { | |
COMPREPLY=() | |
current_word="${COMP_WORDS[COMP_CWORD]}" | |
aws_profiles=$(aws configure list-profiles) | |
COMPREPLY=( $(compgen -W "$aws_profiles" -- "$current_word") ) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment