You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have already searched this project's issues to determine if a similar request has already been made.
What new functionality would you like to see?
It would be cool to have a pf-login utility that uses Fzf to fuzzy select through a list of available AWS profiles. I built a script for my team and figured I'd share the idea.
How would you use this new functionality?
#!/usr/bin/env bash# This is a utility script for facilitating selecting profiles when using aws sso loginset -e
profile_selected=$(cat $AWS_CONFIG_FILE| grep profile | sed 's/^\[profile \(.*\)\]/\1/'| fzf)if [ -z"$profile_selected" ];thenecho"No profile selected"exit 1
fi
aws --profile $profile_selected sso login
The text was updated successfully, but these errors were encountered:
Prior Search
What new functionality would you like to see?
It would be cool to have a
pf-login
utility that uses Fzf to fuzzy select through a list of available AWS profiles. I built a script for my team and figured I'd share the idea.How would you use this new functionality?
The text was updated successfully, but these errors were encountered: