Manage multiple AWS SSO accounts
🤔 What? You are working with multiple client. Each client manages multiple accounts using his own AWS Identity Center. 🚀 How? This can be done with a combination of aws-sso-util and mise. First we generate aws profiles for all the accounts/roles for both clients. aws-sso-util configure populate --sso-region <sso-region> -r <default-region> -u https://client1.awsapps.com/start --components "client1",account_name,role_name aws-sso-util configure populate --sso-region <sso-region> -r <default-region> -u https://client2.awsapps.com/start --components "client2",account_name,role_name The profile names will be formatted client1.<account_name>.<role_name> for client 1 and client2.<account_name>.<role_name> for client 2. ...