benkehoe / aws-sso-util

Smooth out the rough edges of AWS SSO (temporarily, until AWS makes it better).
Apache License 2.0
968 stars 73 forks source link

How to reconfigure existing profile? #128

Open cgeisel opened 2 weeks ago

cgeisel commented 2 weeks ago

It's been over a year since I've used aws-sso-util but when I used it in the past, I would set AWS_PROFILE=my-sso-profile in my environment and use aws-sso-util configure profile my-sso-profile to authenticate and select one of my AWS accounts. This allowed me to run terraform commands against the selected AWS account without needing to set additional environment variables and use the awscli without the --profile argument.

Back then, if I wanted to change to another account, I would run aws-sso-util configure profile my-sso-profile and it would go through the auth process and prompt me to select another account. Now when I re-run that command, it runs and exits. I have to delete ~/.aws/config to get the configure command to allow me to select another account.

Did something change with the behavior of the utility? Is there a way to force configure to re-auth?

If not, what is the "correct" workflow for switching between accounts?

iainelder commented 2 weeks ago

I don't know about the old behavior, but I can confirm that today version 4.33 acts as you describe.

My basic workflow to switch between accounts:

The ~/.aws/config file may contain profiles like this:

Account1.AccountID1.ReadOnly
Account1.AccountID1.Admin
Account2.AccountID2.ReadOnly
Account2.AccountID2.Admin

To use the ReadOnly role in Account1 I set: AWS_PROFILE=Account1.AccountID1.ReadOnly.

To use the ReadOnly role in Account2 I set: AWS_PROFILE=Account2.AccountID2.ReadOnly.

The main difference between this workflow and yours is that the config, once written, doesn't change. What changes is the AWS_PROFILE value.

cgeisel commented 2 weeks ago

Thanks for responding. How do you update AWS_PROFILE, do you just set it to the value in your config by using export?

I guess I am spoiled by being able to rerun the configure command and being prompted to reselect which account to use. I can look into creating easier to type aliases for my profiles in config and tough it out. :)