Skip to content

Commit cf80888

Browse files
committed
Entra Rebrand 2
1 parent e630756 commit cf80888

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

AppCreationScripts/AppCreationScripts.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process -Force
1212
```
1313

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.
1515

1616
```PowerShell
1717
cd .\AppCreationScripts\
@@ -35,23 +35,23 @@
3535

3636
### Presentation of the scripts
3737

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.
3939

4040
These scripts are:
4141

4242
- `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),
4444
- 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:
4646
- the identifier of the application
4747
- 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).
4949

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`).
5151

5252
### Usage pattern for tests and DevOps scenarios
5353

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.
5555

5656
## How to use the app creation scripts?
5757

@@ -116,8 +116,8 @@ Note that the script will choose the tenant in which to create the applications,
116116
117117
if you want to create the apps in a particular tenant, you can use the following option:
118118
119-
- Open the [Azure portal](https://portal.azure.com)
120-
- Select the Azure Active directory you are interested in (in the combo-box below your name on the top right of the browser window)
119+
- Open the [Microsoft Entra admin center](https://entra.microsoft.com)
120+
- Select the Microsoft Entra ID you are interested in (in the combo-box below your name on the top right of the browser window)
121121
- Find the "Active Directory" object in this tenant
122122
- Go to **Properties** and copy the content of the **Directory Id** property
123123
- Then use the full syntax to run the scripts:
@@ -143,4 +143,4 @@ Example:
143143
```PowerShell
144144
. .\Cleanup.ps1 -AzureEnvironmentName "AzureUSGovernment"
145145
. .\Configure.ps1 -AzureEnvironmentName "AzureUSGovernment"
146-
```
146+
```

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ page_type: sample
33
languages:
44
- python
55
products:
6-
- azure-active-directory
7-
description: "This sample demonstrates a Python web application calling a Microsoft Graph that is secured using Azure Active Directory."
6+
- microsoft-entra-id
7+
description: "This sample demonstrates a Python web application calling a Microsoft Graph that is secured using Microsoft Entra ID."
88
urlFragment: ms-identity-python-webapp
99
---
1010
# Integrating Microsoft Entra ID with a Python web application written in Flask
1111

1212
This is a multi-purpose [Flask](https://flask.palletsprojects.com/en/3.0.x/) web app sample.
1313
Write your app like this once, and the same implementation will support 4x2=8 scenarios.
1414

15-
| | Microsoft Entra ID | External ID | External ID with Custom Domain | Azure AD B2C |
15+
| | Microsoft Entra ID | External ID | External ID with Custom Domain | Azure Active Directory B2C |
1616
|----------------|--------------------|-------------|--------------------------------|--------------|
1717
| Web App Sign-In & Sign-Out |||||
1818
| Web App Calls a web API |||||
@@ -41,7 +41,7 @@ Write your app like this once, and the same implementation will support 4x2=8 sc
4141
<th>Microsoft Entra ID</th>
4242
<th>Microsoft Entra External ID</th>
4343
<th>Microsoft Entra External ID with Custom Domain</th>
44-
<th>Azure AD B2C</th>
44+
<th>Azure Active Directory B2C</th>
4545
</tr>
4646

4747
<tr>
@@ -65,7 +65,7 @@ Coming soon.
6565
<td>
6666

6767
Following only the step 1 and 2 (including 2.1 and 2.2) of this
68-
[Configure authentication in a sample Python web app by using Azure AD B2C](https://learn.microsoft.com/azure/active-directory-b2c/configure-authentication-sample-python-web-app?tabs=linux)
68+
[Configure authentication in a sample Python web app by using Azure Active Directory B2C](https://learn.microsoft.com/azure/active-directory-b2c/configure-authentication-sample-python-web-app?tabs=linux)
6969

7070
</td>
7171
</tr>
@@ -92,7 +92,7 @@ as `.env` and then modify `.env` with your app's settings.
9292
</td>
9393
<td>
9494

95-
Copy this [Azure AD B2C template](.env.sample.b2c)
95+
Copy this [Azure Active Directory B2C template](.env.sample.b2c)
9696
as `.env` and then modify `.env` with your app's settings.
9797

9898
</td>

0 commit comments

Comments
 (0)