|
11 | 11 | Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process -Force
|
12 | 12 | ```
|
13 | 13 |
|
14 |
| -1. Run the script to create your Azure AD application and configure the code of the sample application accordingly. |
| 14 | +1. Run the script to create your Microsoft Entra application and configure the code of the sample application accordingly. |
15 | 15 |
|
16 | 16 | ```PowerShell
|
17 | 17 | cd .\AppCreationScripts\
|
|
35 | 35 |
|
36 | 36 | ### Presentation of the scripts
|
37 | 37 |
|
38 |
| -This sample comes with two PowerShell scripts, which automate the creation of the Azure Active Directory applications, and the configuration of the code for this sample. Once you run them, you will only need to build the solution and you are good to test. |
| 38 | +This sample comes with two PowerShell scripts, which automate the creation of the Microsoft Entra applications, and the configuration of the code for this sample. Once you run them, you will only need to build the solution and you are good to test. |
39 | 39 |
|
40 | 40 | These scripts are:
|
41 | 41 |
|
42 | 42 | - `Configure.ps1` which:
|
43 |
| - - creates Azure AD applications and their related objects (permissions, dependencies, secrets, app roles), |
| 43 | + - creates Microsoft Entra applications and their related objects (permissions, dependencies, secrets, app roles), |
44 | 44 | - changes the configuration files in the sample projects.
|
45 |
| - - creates a summary file named `createdApps.html` in the folder from which you ran the script, and containing, for each Azure AD application it created: |
| 45 | + - creates a summary file named `createdApps.html` in the folder from which you ran the script, and containing, for each Microsoft Entra application it created: |
46 | 46 | - the identifier of the application
|
47 | 47 | - the AppId of the application
|
48 |
| - - the url of its registration in the [Azure portal](https://portal.azure.com). |
| 48 | + - the url of its registration in the [Microsoft Entra admin center](https://entra.microsoft.com). |
49 | 49 |
|
50 |
| -- `Cleanup.ps1` which cleans-up the Azure AD objects created by `Configure.ps1`. Note that this script does not revert the changes done in the configuration files, though. You will need to undo the change from source control (from Visual Studio, or from the command line using, for instance, `git reset`). |
| 50 | +- `Cleanup.ps1` which cleans-up the Microsoft Entra objects created by `Configure.ps1`. Note that this script does not revert the changes done in the configuration files, though. You will need to undo the change from source control (from Visual Studio, or from the command line using, for instance, `git reset`). |
51 | 51 |
|
52 | 52 | ### Usage pattern for tests and DevOps scenarios
|
53 | 53 |
|
54 |
| -The `Configure.ps1` will stop if it tries to create an Azure AD application which already exists in the tenant. For this, if you are using the script to try/test the sample, or in DevOps scenarios, you might want to run `Cleanup.ps1` just before `Configure.ps1`. This is what is shown in the steps below. |
| 54 | +The `Configure.ps1` will stop if it tries to create a Microsoft Entra application which already exists in the tenant. For this, if you are using the script to try/test the sample, or in DevOps scenarios, you might want to run `Cleanup.ps1` just before `Configure.ps1`. This is what is shown in the steps below. |
55 | 55 |
|
56 | 56 | ## How to use the app creation scripts?
|
57 | 57 |
|
@@ -118,8 +118,8 @@ Note that the script will choose the tenant in which to create the applications,
|
118 | 118 |
|
119 | 119 | if you want to create the apps in a particular tenant, you can use the following option:
|
120 | 120 |
|
121 |
| -- Open the [Azure portal](https://portal.azure.com) |
122 |
| -- Select the Azure Active directory you are interested in (in the combo-box below your name on the top right of the browser window) |
| 121 | +- Open the [Microsoft Entra admin center](https://entra.microsoft.com) |
| 122 | +- Select the Microsoft Entra ID you are interested in (in the combo-box below your name on the top right of the browser window) |
123 | 123 | - Find the "Active Directory" object in this tenant
|
124 | 124 | - Go to **Properties** and copy the content of the **Directory Id** property
|
125 | 125 | - Then use the full syntax to run the scripts:
|
|
0 commit comments