Why is aws configure sso needed to login when azure is as easy as az login?
#8812
Replies: 1 comment 1 reply
-
|
The difference comes from how identity and account discovery work in AWS versus Azure, not from a CLI design oversight. In Azure, identity is centralized. A user logs in with an email address, and that email is globally unique within Azure AD (Entra ID). From that single identity, Azure can automatically discover:
That’s why AWS is fundamentally different. AWS identity is account-scoped, not global. There is no single global “AWS user”:
Because of this, AWS needs explicit configuration before login:
Why AWS cannot simply do
Once configured, AWS SSO behaves similarly to Azure:
In short: Azure has a globally discoverable identity model. That architectural difference is why AWS requires an explicit configuration step, while Azure can get away with a single |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Is there some technical difference that explains why it can't be just as easy? My guess would be that on Azure, the username is the email address and that contains the domain, which is the SSO url. Needless to say, that is way easier and more intuitive.
Beta Was this translation helpful? Give feedback.
All reactions