-
Notifications
You must be signed in to change notification settings - Fork 403
Migrate OBO tests from old lab to ID4SLAB1 #6021
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 2 commits
fa2a58a
69656d5
0e05c21
9907ff9
5e7a3bb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -79,10 +79,29 @@ public static class KeyVaultSecrets | |
| /// </summary> | ||
| public const string MsalAppAzureAdMultipleOrgsRegional = "MSAL-APP-AzureADMultipleOrgsRegional-JSON"; | ||
| /// <summary> | ||
| /// Multiple orgs app in public cloud (id4slab1 tenant). Used for client credentials and regional token acquisition tests. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please use "multi-tenant" app term.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Resolved - that constant (MsalAppAzureAdMultipleOrgs) is now deleted |
||
| /// </summary> | ||
| public const string MsalAppAzureAdMultipleOrgs = "MSAL-APP-AzureADMultipleOrgs-JSON"; | ||
| /// <summary> | ||
| /// Regional app in id4slab1 tenant with SN+I claims (xms_idrel, xms_ds_cnf). Used for regional ESTS token acquisition tests. | ||
| /// </summary> | ||
| public const string MsalAppRegion = "MSAL-App-Region-JSON"; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There are too many apps. Existing apps should be regional enabled. Pls do a replace existing apps, not an add.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Resolved - removed MsalAppRegion and MsalAppAzureAdMultipleOrgs |
||
| /// <summary> | ||
| /// Represents the application identifier used for Arlington CCA test scenarios in the MSAL App Arlington CCA JSON configuration. | ||
| /// </summary> | ||
| public const string MsalAppArlingtonCCA = "MSAL-App-ArlingtonCCA-JSON"; | ||
|
|
||
| /// <summary> | ||
| /// OBO service app (MSAL-APP-TodoListService) in ID4SLAB1 tenant. Used for On-Behalf-Of flow integration tests | ||
| /// with certificate-based authentication (LabAuth cert from msidlabs vault). | ||
| /// </summary> | ||
| public const string AppOBOService = "MSAL-APP-TodoListService-JSON"; | ||
| /// <summary> | ||
| /// OBO public client app (MSAL-APP-TodoListClient) in ID4SLAB1 tenant. Used as the public client | ||
| /// that acquires user tokens for On-Behalf-Of flow integration tests. | ||
| /// </summary> | ||
| public const string AppOBOClient = "MSAL-APP-TodoListClient-JSON"; | ||
|
|
||
| // Name of key vault secrets for app secrets and certificates | ||
| /// <summary> | ||
| /// default secret value used for testing application authentication scenarios that require a client secret. This secret is typically associated with a test application registered in Azure Active Directory and is used to validate authentication flows that involve client credentials or other secret-based authentication methods. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to have the terminlogy:
I don't see any reason for having more than 3 apps.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resolved - only AppS2S, AppOBOClient, AppOBOService remain as the new constants/Apps