Skip to content

Instantly share code, notes, and snippets.

@TheBigRoomXXL
Created February 18, 2025 08:29
Show Gist options
  • Save TheBigRoomXXL/f37406fb46790710e649fba258453deb to your computer and use it in GitHub Desktop.
Save TheBigRoomXXL/f37406fb46790710e649fba258453deb to your computer and use it in GitHub Desktop.
Assume an AWS profile from SSO with a single command and autocomplete
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