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
Is your feature request related to a problem? Please describe.
I would like to be able to pull up aws-sso list but be able to, with a keyboard/mouse/tap/etc., select the profile to use.
Describe the solution you'd like
I made this PoC for bash/zsh, and it requires the fzf program to be installed:
functionaws-sso-select() {
local aws_profile=$(aws-sso list | tail -n +5 | fzf --bind 'enter:execute(echo {7})+abort')eval$(/usr/local/bin/aws-sso eval -p $aws_profile)
}
Describe alternatives you've considered
The alternative is shown in the PoC above. It works but I'd like to see it natively supported.
Additional context
This simply saves me some time having to type aws-sso list, then aws-sso-profile, and pasting the profile. That's all. :)
The text was updated successfully, but these errors were encountered:
No no. I was thinking of implementing it in Go. That fzf proof-of-concept is just that. I noticed you already have some keyboard/mouse interaction during the initial setup for selecting things and I figured it wouldn't be "too" hard to implement, but that could be my ignorance. I'll have a look at the codebase tomorrow and see if it's something I can do. Thanks!
Is your feature request related to a problem? Please describe.
I would like to be able to pull up
aws-sso list
but be able to, with a keyboard/mouse/tap/etc., select the profile to use.Describe the solution you'd like
I made this PoC for bash/zsh, and it requires the
fzf
program to be installed:Describe alternatives you've considered
The alternative is shown in the PoC above. It works but I'd like to see it natively supported.
Additional context
This simply saves me some time having to type
aws-sso list
, thenaws-sso-profile
, and pasting the profile. That's all. :)The text was updated successfully, but these errors were encountered: