Skip to content

Commit 10647d4

Browse files
committed
update html pages
1 parent 9515e65 commit 10647d4

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

1-Authentication/6-sign-in-node-cli-app/AppCreationScripts/Cleanup.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Function Cleanup
2222
#>
2323

2424
# $tenantId is the Active Directory Tenant. This is a GUID which represents the "Directory ID" of the AzureAD tenant
25-
# into which you want to create the apps. Look it up in the Azure portal in the "Properties" of the Azure AD.
25+
# into which you want to create the apps. Look it up in the Microsoft Entra admin center in the "Properties" of the Azure AD.
2626

2727
# Connect to the Microsoft Graph API
2828
Write-Host "Connecting to Microsoft Graph"

1-Authentication/6-sign-in-node-cli-app/AppCreationScripts/Configure.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Function ReplaceInTextFile([string] $configFilePath, [System.Collections.HashTab
156156
Function ConfigureApplications
157157
{
158158
<#.Description
159-
This function creates the Microsoft Entra applications for the sample in the provided Azure AD tenant and updates the
159+
This function creates the Microsoft Entra applications for the sample in the provided external tenant and updates the
160160
configuration files in the client and service project of the visual studio solution (App.Config and Web.Config)
161161
so that they are consistent with the Applications parameters
162162
#>
@@ -223,7 +223,7 @@ Function ConfigureApplications
223223
}
224224
Write-Host "Done creating the client application (ciam-msal-node-cli-app)"
225225

226-
# URL of the AAD application in the Azure portal
226+
# URL of the AAD application in the Microsoft Entra admin center
227227
# Future? $clientPortalUrl = "https://portal.azure.com/#@"+$tenantName+"/blade/Microsoft_AAD_RegisteredApps/ApplicationMenuBlade/Overview/appId/"+$currentAppId+"/objectId/"+$currentAppObjectId+"/isMSAApp/"
228228
$clientPortalUrl = "https://portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationMenuBlade/~/Overview/appId/"+$currentAppId+"/isMSAApp~/false"
229229

@@ -261,7 +261,7 @@ Function ConfigureApplications
261261

262262
ReplaceInTextFile -configFilePath $configFile -dictionary $dictionary
263263
Write-Host -ForegroundColor Green "------------------------------------------------------------------------------------------------"
264-
Write-Host "IMPORTANT: Please follow the instructions below to complete a few manual step(s) in the Azure portal":
264+
Write-Host "IMPORTANT: Please follow the instructions below to complete a few manual step(s) in the Microsoft Entra admin center":
265265
Write-Host "- For client"
266266
Write-Host " - Navigate to $clientPortalUrl"
267267
Write-Host " - Navigate to your tenant and create user flows to allow users to sign up for the application." -ForegroundColor Red
@@ -310,7 +310,7 @@ if ($null -eq (Get-Module -ListAvailable -Name "Microsoft.Graph.Users")) {
310310
Import-Module Microsoft.Graph.Users
311311

312312
Set-Content -Value "<html><body><table>" -Path createdApps.html
313-
Add-Content -Value "<thead><tr><th>Application</th><th>AppId</th><th>Url in the Azure portal</th></tr></thead><tbody>" -Path createdApps.html
313+
Add-Content -Value "<thead><tr><th>Application</th><th>AppId</th><th>Url in the Microsoft Entra admin center</th></tr></thead><tbody>" -Path createdApps.html
314314

315315
$ErrorActionPreference = "Stop"
316316

1-Authentication/6-sign-in-node-cli-app/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ To manually register the apps, as a first step you'll need to:
123123
124124
Please refer to: [Tutorial: Create user flow in Azure Active Directory CIAM](https://github.com/microsoft/entra-previews/blob/PP2/docs/3-Create-sign-up-and-sign-in-user-flow.md)
125125
126-
> :information_source: To enable password reset in Microsoft Entra External ID in Azure Active Directory (Azure AD), please refer to: [Tutorial: Enable self-service password reset](https://github.com/microsoft/entra-previews/blob/PP2/docs/4-Enable-password-reset.md)
126+
> :information_source: To enable password reset in Microsoft Entra External ID in Microsoft Entra, please refer to: [Tutorial: Enable self-service password reset](https://github.com/microsoft/entra-previews/blob/PP2/docs/4-Enable-password-reset.md)
127127
128128
#### Add External Identity Providers
129129
@@ -163,7 +163,7 @@ Open the project in your IDE (like Visual Studio or Visual Studio Code) to confi
163163
164164
1. Open the `App\authConfig.js` file.
165165
1. Find the placeholder `Enter_the_Tenant_Subdomain_Here` and replace it with the Directory (tenant) subdomain. For instance, if your tenant primary domain is `contoso.onmicrosoft.com`, use `contoso`. If you don't have your tenant domain name, learn how to [read your tenant details](https://review.learn.microsoft.com/azure/active-directory/external-identities/customers/how-to-create-customer-tenant-portal#get-the-customer-tenant-details).
166-
1. Find the key `Enter_the_Application_Id_Here` and replace the existing value with the application ID (clientId) of `ciam-msal-node-cli-app` app copied from the Azure portal.
166+
1. Find the key `Enter_the_Application_Id_Here` and replace the existing value with the application ID (clientId) of `ciam-msal-node-cli-app` app copied from the Microsoft Entra admin center.
167167
168168
### Step 4: Running the sample
169169

0 commit comments

Comments
 (0)