Skip to content

Commit 925fe3b

Browse files
authored
Merge pull request #296400 from MicrosoftDocs/main
Publish to live, Sunday 4PM PST, 3/16
2 parents f387e30 + 1801f09 commit 925fe3b

11 files changed

+75
-96
lines changed

articles/azure-signalr/howto-use-managed-identity.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,13 @@ After you add a [system-assigned identity](#add-a-system-assigned-identity) or [
8080
1. In the managed identity authentication settings, for **Audience in the issued token**, you can specify the target **resource**. The **resource** will become an `aud` claim in the obtained access token, which can be used as a part of validation in your upstream endpoints. The resource can be in one of the following formats:
8181

8282
- Application (client) ID of the service principal.
83+
84+
When using Application (client) ID, the application has to be in the same tenant that the Azure SignalR resource is in. If your application is in a different tenant, please follow these steps:
85+
1. [Convert single-tenant app to multitenant on Microsoft Entra ID](/entra/identity-platform/single-and-multi-tenant-apps) to convert your application to a multitenant application.
86+
2. [Create an enterprise application from a multitenant application in Microsoft Entra ID](/entra/identity/enterprise-apps/create-service-principal-cross-tenant?pivots=admin-consent-url) to provision your application in the current tenant.
87+
88+
Then you'll be able to find the enterprise application by clicking the "Or select from existing applications".
89+
8390
- Application ID URI of the service principal.
8491

8592
> [!IMPORTANT]

includes/cdn-app-dev-prep.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
---
22
author: zhangmanling
3+
ms.author: mazha
34
ms.service: azure-cdn
45
ms.topic: include
56
ms.date: 11/21/2018
6-
ms.author: mazha
7+
ms.custom: include file
78
---
9+
810
## Prerequisites
911
Before writing CDN management code, you must do some preparation to enable the code to interact with the Azure Resource Manager. To do this preparation, you need to:
1012

@@ -13,15 +15,15 @@ Before writing CDN management code, you must do some preparation to enable the c
1315
* Apply permissions to the resource group so that only authorized users from your Microsoft Entra tenant can interact with the CDN profile
1416

1517
### Creating the resource group
16-
1. Sign in to the [Azure Portal](https://portal.azure.com).
17-
2. Click **Create a resource**.
18-
3. Search for **Resource group** and in the Resource group pane, click **Create**.
18+
1. Sign in to the [Azure portal](https://portal.azure.com).
19+
2. Select **Create a resource**.
20+
3. Search for **Resource group** and in the Resource group pane, select **Create**.
1921

2022
![Creating a new resource group](./media/cdn-app-dev-prep/cdn-new-rg-1-include.png)
21-
3. Name your resource group *CdnConsoleTutorial*. Select your subscription and choose a location near you. If you wish, you can click the **Pin to dashboard** checkbox to pin the resource group to the dashboard in the portal. Pinning makes it easier to find later. After you've made your selections, click **Create**.
23+
3. Name your resource group *CdnConsoleTutorial*. Select your subscription and choose a location near you. If you wish, you can select the **Pin to dashboard** checkbox to pin the resource group to the dashboard in the portal. Pinning makes it easier to find later. After you've made your selections, select **Create**.
2224

2325
![Screenshot of the Resource group dialog box.](./media/cdn-app-dev-prep/cdn-new-rg-2-include.png)
24-
4. After the resource group is created, if you didn't pin it to your dashboard, you can find it by clicking **Browse**, then **Resource Groups**. To open it, click the resource group. Make a note of your **Subscription ID**. We need it later.
26+
4. After the resource group is created, if you didn't pin it to your dashboard, you can find it by clicking **Browse**, then **Resource Groups**. To open it, select the resource group. Make a note of your **Subscription ID**. We need it later.
2527

2628
![Screenshot of the C D N Console Tutorial section.](./media/cdn-app-dev-prep/cdn-subscription-id-include.png)
2729

@@ -39,7 +41,6 @@ Creating a service principal consists of several steps, including creating a Mic
3941
>
4042
> When you get to the step [Assign the application to a role](../articles/active-directory/develop/howto-create-service-principal-portal.md#assign-a-role-to-the-application), use the resource group created earlier, *CdnConsoleTutorial*, but instead of the **Reader** role, assign the **CDN Profile Contributor** role. After you assign the application the **CDN Profile Contributor** role on your resource group, return to this tutorial.
4143
>
42-
>
4344
4445
Once you've created your service principal and assigned the **CDN Profile Contributor** role, the **Users** blade for your resource group should look similar to the following image.
4546

@@ -49,15 +50,13 @@ Once you've created your service principal and assigned the **CDN Profile Contri
4950
If, instead of a service principal, you'd rather have interactive individual user authentication, the process is similar to that for a service principal. In fact, you need to follow the same procedure, but make a few minor changes.
5051

5152
> [!IMPORTANT]
52-
> Only follow these next steps if you are choosing to use individual user authentication instead of a service principal.
53-
>
54-
>
53+
> Only follow these next steps if you're choosing to use individual user authentication instead of a service principal.
5554
5655
1. When creating your application, instead of **Web Application**, choose **Native application**.
5756

5857
![Native application](./media/cdn-app-dev-prep/cdn-native-application-include.png)
59-
2. On the next page, you are prompted for a **redirect URI**. The URI won't be validated, but remember what you entered. You need it later.
60-
3. There is no need to create a **client authentication key**.
58+
2. On the next page, you're prompted for a **redirect URI**. The URI won't be validated, but remember what you entered. You need it later.
59+
3. There's no need to create a **client authentication key**.
6160
4. Instead of assigning a service principal to the **CDN Profile Contributor** role, we're going to assign individual users or groups. In this example, you can see that I've assigned *CDN Demo User* to the **CDN Profile Contributor** role.
6261

6362
![Individual user access](./media/cdn-app-dev-prep/cdn-user-include.png)

includes/cdn-classic-retirement.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
---
2-
title: Azure CDN Standard from Microsoft (classic) retirement notice
3-
description: include file
4-
services: azure-cdn
5-
author: duongau
6-
ms.service: azure-cdn
7-
ms.topic: include
8-
ms.date: 1/21/2025
9-
ms.author: duau
10-
ms.custom: include file
2+
author: halkazwini
3+
ms.author: halkazwini
4+
ms.service: azure-cdn
5+
ms.topic: include
6+
ms.date: 1/21/2025
7+
ms.custom: include file
118
---
129

1310
> [!IMPORTANT]

includes/cdn-create-profile.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
---
2-
title: include file
3-
description: include file
4-
services: cdn
52
author: SyntaxC4
3+
ms.author: cfowler
64
ms.service: azure-cdn
75
ms.topic: include
86
ms.date: 04/06/2022
9-
ms.author: cfowler
107
ms.custom: include file
118
---
129

@@ -41,4 +38,3 @@ A CDN profile is a container for CDN endpoints and specifies a pricing tier.
4138
:::image type="content" source="./media/cdn-create-profile/cdn-new-profile.png" alt-text="Input variables in Basics tab.":::
4239

4340
1. Select **Review + Create** then **Create** to create the profile.
44-

includes/cdn-limits.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
author: mdgattuso
3-
ms.service: cdn
3+
ms.author: magattus
4+
ms.service: azure-cdn
45
ms.topic: include
56
ms.date: 07/31/2021
6-
ms.author: magattus
7+
ms.custom: include file
78
---
89

910
| Resource | Limit |
@@ -20,8 +21,6 @@ ms.author: magattus
2021
| Maximum requests per second per profile | 100,000 |
2122
| HTTP header size limit (per header) | 32 KB |
2223

23-
*These two limits are only applicable to Azure CDN Standard from Microsoft (classic). If the traffic is not globally distributed and concentrated in one or two regions, or if a higher quota limit is needed, create an [Azure Support request](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/newsupportrequest).
24+
*These two limits are only applicable to Azure CDN Standard from Microsoft (classic). If the traffic isn't globally distributed and concentrated in one or two regions, or if a higher quota limit is needed, create an [Azure Support request](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/newsupportrequest).
2425

2526
A Content Delivery Network subscription can contain one or more Content Delivery Network profiles. A Content Delivery Network profile can contain one or more Content Delivery Network endpoints. You might want to use multiple profiles to organize your Content Delivery Network endpoints by internet domain, web application, or some other criteria.
26-
27-

includes/cdn-premium-feature.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
---
2-
title: include file
3-
description: include file
4-
services: cdn
5-
author: duongau
2+
author: halkazwini
3+
ms.author: halkazwini
64
ms.service: azure-cdn
75
ms.topic: include
86
ms.date: 09/08/2023
9-
ms.author: duau
107
ms.custom: include file
118
---
129

1310
> [!IMPORTANT]
14-
> This is a feature of **Azure CDN Premium from Edgio** only, to configure rules on **Azure CDN from Microsoft** please use the [Standard rules engine](../articles/cdn/cdn-standard-rules-engine-reference.md). Advanced rules are not available for **Azure CDN from Akamai**. For a full comparison of CDN features, see [Azure CDN product features](../articles/cdn/cdn-features.md).
15-
>
11+
> This is a feature of **Azure CDN Premium from Edgio** only, to configure rules on **Azure CDN from Microsoft** please use the [Standard rules engine](../articles/cdn/cdn-standard-rules-engine-reference.md). Advanced rules aren't available for **Azure CDN from Akamai**. For a full comparison of CDN features, see [Azure CDN product features](../articles/cdn/cdn-features.md).

includes/cdn-verizon-only.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
---
2-
title: include file
3-
description: include file
4-
services: cdn
5-
author: duongau
2+
author: halkazwini
3+
ms.author: halkazwini
64
ms.service: azure-cdn
75
ms.topic: include
86
ms.date: 10/29/2024
9-
ms.author: duau
107
ms.custom: include file
118
---
129

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
---
2-
title: Azure Front Door (classic) retirement notice
3-
description: include file
4-
services: front-door
5-
author: duongau
6-
ms.service: front-door
7-
ms.topic: include
8-
ms.date: 03/18/2024
9-
ms.author: duau
10-
ms.custom: include file
2+
author: halkazwini
3+
ms.author: halkazwini
4+
ms.service: azure-frontdoor
5+
ms.topic: include
6+
ms.date: 03/18/2024
7+
ms.custom: include file
118
---
129
> [!IMPORTANT]
13-
> Azure Front Door (classic) will be retired on **March 31, 2027**. To avoid any service disruption, it is important that you [**migrate your Azure Front Door (classic) profiles**](../articles/frontdoor/migrate-tier.md) to Azure Front Door Standard or Premium tier by March 2027. For more information, see [**Azure Front Door (classic) retirement**](https://azure.microsoft.com/updates/azure-front-door-classic-will-be-retired-on-31-march-2027/).
10+
> Azure Front Door (classic) will be retired on **March 31, 2027**. To avoid any service disruption, it's important that you [**migrate your Azure Front Door (classic) profiles**](../articles/frontdoor/migrate-tier.md) to Azure Front Door Standard or Premium tier by March 2027. For more information, see [**Azure Front Door (classic) retirement**](https://azure.microsoft.com/updates/azure-front-door-classic-will-be-retired-on-31-march-2027/).

includes/front-door-edge-locations-by-abbreviation.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
---
2-
title: include file
3-
description: include file
4-
services: frontdoor
5-
author: duongau
6-
ms.service: azure-frontdoor
7-
ms.topic: include
8-
ms.date: 06/01/2023
9-
ms.author: duau
10-
ms.custom: include file
2+
author: halkazwini
3+
ms.author: halkazwini
4+
ms.service: azure-frontdoor
5+
ms.topic: include
6+
ms.date: 06/01/2023
7+
ms.custom: include file
118
---
129

1310
| Abbreviation | Location | Region |

includes/front-door-edge-locations.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
---
2-
title: include file
3-
description: include file
4-
services: frontdoor
5-
author: duongau
6-
ms.service: azure-frontdoor
7-
ms.topic: include
8-
ms.date: 10/16/2023
9-
ms.author: duau
10-
ms.custom: include file
2+
author: halkazwini
3+
ms.author: halkazwini
4+
ms.service: azure-frontdoor
5+
ms.topic: include
6+
ms.date: 10/16/2023
7+
ms.custom: include file
118
---
129

1310
| Region | Cities |
1411
|--|--|
15-
| North America | Etobicoke, Canada (2)<br />Montreal, Canada<br />Vancouver, Canada (2)<br />Querétaro, Mexico (2)<br />Atlanta, GA, USA (3)<br />Boydton, VA, USA (2)<br />Chaska, MN, USA (2)<br /> Cheyenne, WY, USA (2)<br />Chicago, IL, USA (4)<br /> Dallas, TX, USA (4)<br />Des Moines,IA, USA (3)<br />Detroit, MI, USA<br />Englewood, CO, USA (2)<br />Honolulu, HI, USA<br />Houston, TX, USA (3)<br />Jacksonville, FL, USA (2)<br />Las Vegas, NV, USA (3)<br />Los Angeles, CA, USA (2)<br />Manassas, VA, USA (3)<br />Memphis, TN, USA<br /> Miami, FL, USA (4)<br />Minneapolis, MN, USA (2)<br />Needham Heights, MA, USA (2)<br /> Nashville, TN, USA<br />Newark, NJ, USA<br />New York, NY, USA (2)<br />Philadelphia, PA, USA<br />Phoenix, AZ, USA<br />Plano, TX, USA<br />Portland, OR, USA<br />Quincy, WA, USA (3)<br />San Antonio, TX, USA (4)<br />San Jose, CA, USA (4)<br />Salt Lake City, UT, USA (3)<br />Seattle, WA, USA (2)<br />Secaucus, NJ, USA (2)<br />Southfield, MI, USA<br />Tempe, AZ, USA<br /> |
12+
| North America | Etobicoke, Canada (2)<br />Montreal, Canada<br />Vancouver, Canada (2)<br />Querétaro, Mexico (2)<br />Atlanta, GA, USA (3)<br />Boydton, VA, USA (2)<br />Chaska, MN, USA (2)<br /> Cheyenne, WY, USA (2)<br />Chicago, IL, USA (4)<br /> Dallas, TX, USA (4)<br />Des Moines, IA, USA (3)<br />Detroit, MI, USA<br />Englewood, CO, USA (2)<br />Honolulu, HI, USA<br />Houston, TX, USA (3)<br />Jacksonville, FL, USA (2)<br />Las Vegas, NV, USA (3)<br />Los Angeles, CA, USA (2)<br />Manassas, VA, USA (3)<br />Memphis, TN, USA<br /> Miami, FL, USA (4)<br />Minneapolis, MN, USA (2)<br />Needham Heights, MA, USA (2)<br /> Nashville, TN, USA<br />Newark, NJ, USA<br />New York, NY, USA (2)<br />Philadelphia, PA, USA<br />Phoenix, AZ, USA<br />Plano, TX, USA<br />Portland, OR, USA<br />Quincy, WA, USA (3)<br />San Antonio, TX, USA (4)<br />San Jose, CA, USA (4)<br />Salt Lake City, UT, USA (3)<br />Seattle, WA, USA (2)<br />Secaucus, NJ, USA (2)<br />Southfield, MI, USA<br />Tempe, AZ, USA<br /> |
1613
| South America | Buenos Aires, Argentina<br />Campinas, Brazil (2)<br />Rio de Janeiro, Brazil (3)<br />Sao Paulo, Brazil (2)<br />Bogota, Colombia |
1714
| Europe | Zaventem, Belgium (2)<br />Sofia, Bulgaria (2)<br />Prague, Czech Republic<br />Ballerup, Denmark<br /> Vantaa, Finland<br />Les Ulis, France (3)<br />Paris, France<br />Saint Denis, France (2)<br />Berlin, Germany<br />Duesseldorf, Germany<br />Frankfurt, Germany (2)<br />Munich, Germany<br />Russelsheim, Germany (2)<br />Athens, Greece<br />Budapest, Hungary<br />Dublin, Ireland (2)<br />Milan, Italy<br />Rome, Italy (2)<br />Amsterdam, Netherlands<br />Oslo, Norway<br />Stavanger, Norway<br />Warsaw, Poland<br />Lisbon, Portugal<br />Bucharest, Romania<br />Barcelona, Spain<br />Madrid, Spain<br />Bromma, Sweden (2)<br />Zurich, Switzerland (2)<br />London, United Kingdom (5)<br />Manchester, United Kingdom |
1815
| Africa | Cairo, Egypt (2)<br />Nairobi, Kenya<br />Rabat, Morocco<br />Lagos, Nigeria<br />Cape Town, South Africa<br />Isando, South Africa (3) |

0 commit comments

Comments
 (0)