An Azure service that enables managed service providers, independent software vendors, and enterprise IT teams to deliver turnkey solutions through the Azure Marketplace or service catalog.
Hello @Tim Crumley
Thank you for reaching out to the Microsoft Q&A team,
creating a multi-tenant app registration and generating the associated Client ID and Client Secret is a straightforward process. Please follow the steps below:
- Sign into the Azure portal and go to Microsoft Entra ID > App registrations.
- Click New registration.
- Give your app a name (Enter a meaningful Name)
- Under Supported account types, pick Accounts in any organizational directory (Any Azure AD directory – Multitenant).
- (Optionally) add a Redirect URI if you need one.
- Hit Register.
- On the app’s Overview page, copy down the Application (client) ID and Directory (tenant) ID.
- In the left menu, choose Certificates & secrets.
- Click New client secret.
- Enter a description (e.g. “MyApp Secret”).
- Pick an expiry (max 24 months).
- Click Add, then immediately copy the secret Value somewhere safe-this value won’t show again after you leave the page.
References:
- Tutorial: Register an app with Microsoft Entra ID
- Create an app to access Microsoft Defender for Endpoint without a user
- Create a secure partner application
- Use client secrets with Microsoft.Identity.Web
Thanks
Venkat.M