Need help understanding SSO/cloud sync in multiple-subscription tenant

Ryan Anderson 25 Reputation points
2024-07-19T22:13:44.97+00:00

I am working on an ASP.NET core application for our hosted customers and need some information on authentication using Active Directory.

A bit of background on our setup:

  • We have a single Azure tenant, that has multiple subscriptions within it. Each hosted client has two subscriptions within the tenant – one for Production and one for non-Production.
  • Currently the application is deployed to a Windows Server VM in the same virtual network (vnet) and joined to the same Windows AD domain as the other virtual machines
  • There are, at a minimum, three Windows AD domains involved
    • The hosted (IaaS) domain,
    • The management domain, which provides access to our staff across multiple clients/subscriptions
    • The client on-premises domain, which provides access to client staff
    • The hosted domain has trusts established with both the management and client domains
    • There are no user accounts on the hosted domain, all users are in the management or client domains.
  • Access to the application is granted through a group on the hosted domain, which has one or more client-domain group nested within it. This allows the client to manage access on their own without needing to contact us directly.
  • The application needs to remotely access other VMs in the subscription (which requires it to be in the same vnet), as well as using managed identity to access Azure resources.
  • We want to containerize the application to make deployments simpler across all client subscriptions, which requires a Linux container as Managed Identity does not work on Windows containers that are within a vnet.
  • Login is currently handled with the System.DirectoryServices and System.DirectoryServices.ActiveDirectory libraries, but as we have a need to reduce Windows-specific dependencies we are working to transition away from this.

The current logon flow is:

  1. Submit credentials
  2. Determine the appropriate domain (client or management domain)
  3. Authenticate credentials on that domain
  4. Retrieve group memberships for a user
  5. Retrieve roles for user
    1. Check if they are in the nested group using the "memberOf" LDAP attribute
      1. If not, check their group memberships 1. First using UserPrincipal.GetAuthorizationGroups() – this sometimes fails, as the trust relationship may or may not allow the application to retrieve this information. 1. If that fails, fall back to manually traversing each nested group recursively until the user is found or all branches have been ruled out
  6. If authorized, proceed to the application

Now (finally) to the actual issue:

We want to implement an SSO framework to simplify the login process. I have been trying to figure out how to configure Windows ActiveDirectory as an identity provider (IdP) – most of what I'm seeing is pointing towards setting up Entra CloudSync. But that leaves me with a couple questions:

  • If we set up CloudSync to the hosted domain, will it be able to retrieve users on the management and client domains? Or will we need to add CloudSync to each domain?
  • From what I can tell, CloudSync is per-tenant – so if we use that, would Client A potentially be able to sign on to a system at Client B? Or can we separate the clients so they only have access to their subscription(s)?
.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,771 questions
ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,500 questions
Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
6,392 questions
Microsoft Entra
0 comments No comments
{count} votes

Accepted answer
  1. Udayashankar K.N 80 Reputation points Microsoft Employee
    2024-07-22T05:15:02.33+00:00

    To answer to your question, is your setup is like was single domain with sub domains are separate domains. if it single domain with sub domains then if we configure on the single domain the SSO it will automatically get reflected to the sub domains.

    if it is a separate domain then we need to setup cloud sync. on individual domain.

    for your second question: if we have trust relationship between domains then client A can login to B and vice versa .


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.