Skip to content

Commit 164eb6a

Browse files
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into sdk-managed-identity
2 parents 2534958 + 85e59cf commit 164eb6a

File tree

580 files changed

+1448
-1168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

580 files changed

+1448
-1168
lines changed

articles/api-management/api-management-authenticate-authorize-azure-openai.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Options to authenticate and authorize to Azure OpenAI APIs using Az
55
author: dlepow
66
ms.service: azure-api-management
77
ms.topic: article
8-
ms.date: 02/20/2024
8+
ms.date: 01/23/2025
99
ms.author: danlep
1010
ms.collection: ce-skilling-ai-copilot
1111
---
@@ -78,7 +78,7 @@ In this example, the named value in API Management is *openai-api-key*.
7878

7979
## Authenticate with managed identity
8080

81-
An alternative way to authenticate to an Azure OpenAI API by using a managed identity in Microsoft Entra ID. For background, see
81+
An alternative and recommended way to authenticate to an Azure OpenAI API is by using a managed identity in Microsoft Entra ID. For background, see
8282
[How to configure Azure OpenAI Service with managed identity](/azure/ai-services/openai/how-to/managed-identity).
8383

8484
Following are steps to configure your API Management instance to use a managed identity to authenticate requests to an Azure OpenAI API.

articles/api-management/azure-openai-api-from-specification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.service: azure-api-management
55
author: dlepow
66
ms.author: danlep
77
ms.topic: how-to
8-
ms.date: 05/10/2024
8+
ms.date: 01/23/2025
99
ms.collection: ce-skilling-ai-copilot
1010
ms.custom: template-how-to, build-2024
1111
---
@@ -16,7 +16,7 @@ ms.custom: template-how-to, build-2024
1616

1717
This article shows two options to import an [Azure OpenAI Service](/azure/ai-services/openai/overview) API into an Azure API Management instance as a REST API:
1818

19-
- [Import an Azure OpenAI API directly from Azure OpenAI Service](#option-1-import-api-from-azure-openai-service)
19+
- [Import an Azure OpenAI API directly from Azure OpenAI Service](#option-1-import-api-from-azure-openai-service) (recommended)
2020
- [Download and add the OpenAPI specification](#option-2-add-an-openapi-specification-to-api-management) for Azure OpenAI and add it to API Management as an OpenAPI API.
2121

2222
## Prerequisites

articles/api-management/azure-openai-token-limit-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.collection: ce-skilling-ai-copilot
99
ms.custom:
1010
- build-2024
1111
ms.topic: reference
12-
ms.date: 06/25/2024
12+
ms.date: 02/18/2025
1313
ms.author: danlep
1414
---
1515

articles/api-management/llm-token-limit-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: azure-api-management
88
ms.collection: ce-skilling-ai-copilot
99
ms.custom:
1010
ms.topic: reference
11-
ms.date: 08/08/2024
11+
ms.date: 02/18/2025
1212
ms.author: danlep
1313
---
1414

articles/app-service/includes/deploy-github-actions/deploy-github-actions-openid-connect.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.custom: devx-track-azurecli
66
ms.date: 01/16/2025
77
---
88

9-
To deploy with OpenID Connect using the managed identity you configured, use the `azure/login@v1` action with the `client-id`, `tenant-id`, and `subscription-id` keys. Reference the GitHub secrets that you created earlier.
9+
To deploy with OpenID Connect using the managed identity you configured, use the `azure/login@v2` action with the `client-id`, `tenant-id`, and `subscription-id` keys. Reference the GitHub secrets that you created earlier.
1010

1111
# [ASP.NET Core](#tab/aspnetcore)
1212

@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
# Checkout the repo
3333
- uses: actions/checkout@main
34-
- uses: azure/login@v1
34+
- uses: azure/login@v2
3535
with:
3636
client-id: ${{ secrets.AZURE_CLIENT_ID }}
3737
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
@@ -89,7 +89,7 @@ jobs:
8989
# checkout the repo
9090
- uses: actions/checkout@main
9191
92-
- uses: azure/login@v1
92+
- uses: azure/login@v2
9393
with:
9494
client-id: ${{ secrets.AZURE_CLIENT_ID }}
9595
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
@@ -140,7 +140,7 @@ jobs:
140140
141141
steps:
142142
- uses: actions/checkout@v4
143-
- uses: azure/login@v1
143+
- uses: azure/login@v2
144144
with:
145145
client-id: ${{ secrets.AZURE_CLIENT_ID }}
146146
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
@@ -240,7 +240,7 @@ jobs:
240240
- name: 'Checkout GitHub Action'
241241
uses: actions/checkout@main
242242
243-
- uses: azure/login@v1
243+
- uses: azure/login@v2
244244
with:
245245
client-id: ${{ secrets.AZURE_CLIENT_ID }}
246246
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
@@ -292,7 +292,7 @@ jobs:
292292
steps:
293293
- uses: actions/checkout@v4
294294
295-
- uses: azure/login@v1
295+
- uses: azure/login@v2
296296
with:
297297
client-id: ${{ secrets.AZURE_CLIENT_ID }}
298298
tenant-id: ${{ secrets.AZURE_TENANT_ID }}

articles/app-service/includes/deploy-github-actions/deploy-github-actions-service-principal.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.custom: devx-track-azurecli
66
ms.date: 01/16/2025
77
---
88

9-
To deploy with the service principal you configured, use the `azure/login@v1` action with the `creds` key and reference the `AZURE_CREDENTIALS` secret that you created earlier.
9+
To deploy with the service principal you configured, use the `azure/login@v2` action with the `creds` key and reference the `AZURE_CREDENTIALS` secret that you created earlier.
1010

1111
# [ASP.NET Core](#tab/aspnetcore)
1212

@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
# Checkout the repo
2929
- uses: actions/checkout@main
30-
- uses: azure/login@v1
30+
- uses: azure/login@v2
3131
with:
3232
creds: ${{ secrets.AZURE_CREDENTIALS }}
3333

@@ -79,7 +79,7 @@ jobs:
7979
# checkout the repo
8080
- uses: actions/checkout@main
8181
82-
- uses: azure/login@v1
82+
- uses: azure/login@v2
8383
with:
8484
creds: ${{ secrets.AZURE_CREDENTIALS }}
8585
@@ -124,7 +124,7 @@ jobs:
124124
125125
steps:
126126
- uses: actions/checkout@v4
127-
- uses: azure/login@v1
127+
- uses: azure/login@v2
128128
with:
129129
creds: ${{ secrets.AZURE_CREDENTIALS }}
130130
- name: Set up JDK 1.8
@@ -219,7 +219,7 @@ jobs:
219219
- name: 'Checkout GitHub Action'
220220
uses: actions/checkout@main
221221
222-
- uses: azure/login@v1
222+
- uses: azure/login@v2
223223
with:
224224
creds: ${{ secrets.AZURE_CREDENTIALS }}
225225
@@ -267,7 +267,7 @@ jobs:
267267
steps:
268268
- uses: actions/checkout@v4
269269
270-
- uses: azure/login@v1
270+
- uses: azure/login@v2
271271
with:
272272
creds: ${{ secrets.AZURE_CREDENTIALS }}
273273

articles/azure-app-configuration/howto-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ You can also make your App Configuration data accessible to your application as
8989

9090
Excessive requests to App Configuration can result in throttling or overage charges. To reduce the number of requests made:
9191

92-
* Increase the refresh interval, especially if your configuration values do not change frequently. Specify a new refresh interval using the [`SetCacheExpiration` method](/dotnet/api/microsoft.extensions.configuration.azureappconfiguration.azureappconfigurationrefreshoptions.setcacheexpiration).
92+
* Increase the refresh interval, especially if your configuration values do not change frequently. Specify a new refresh interval using the [`SetRefreshInterval` method](/dotnet/api/microsoft.extensions.configuration.azureappconfiguration.azureappconfigurationrefreshoptions.setrefreshinterval).
9393

9494
* Watch a single *sentinel key*, rather than watching individual keys. Refresh all configuration only if the sentinel key changes. See [Use dynamic configuration in an ASP.NET Core app](enable-dynamic-configuration-aspnet-core.md) for an example.
9595

articles/azure-compute-fleet/quickstart-create-portal.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.topic: how-to
77
ms.service: azure-compute-fleet
88
ms.custom:
99
- build-2024
10-
ms.date: 11/13/2024
10+
ms.date: 02/19/2025
1111
ms.reviewer: jushiman
1212
---
1313

@@ -16,7 +16,7 @@ ms.reviewer: jushiman
1616
> [!IMPORTANT]
1717
> Azure Compute Fleet is currently in preview. Previews are made available to you on the condition that you agree to the [supplemental terms of use](https://azure.microsoft.com/support/legal/preview-supplemental-terms/). Some aspects of this feature may change prior to general availability (GA).
1818
19-
This article steps through using Azure portal to create a Compute Fleet.
19+
This article steps through using the Azure portal to create a Compute Fleet.
2020

2121

2222
## Log in to Azure
@@ -28,20 +28,25 @@ Sign in to the [Azure portal](https://portal.azure.com).
2828

2929
You can deploy a Compute Fleet with a Windows Server image or Linux image such as RHEL, CentOS, Ubuntu, or SLES.
3030

31-
1. In the Azure portal search bar, search for **Azure Compute Fleet** and select the result under *Marketplace*.
31+
1. In the Azure portal search bar, search for **Compute Fleet** and select the result under *Marketplace*.
3232
1. Select **Create** on the **Compute Fleet** page.
3333

3434
1. In the **Basics** tab, under **Project details**, make sure the correct subscription is selected and create a new resource group called *myFleetResourceGroup*.
3535
1. Under **Instance details**, set *myFleet* for your Compute Fleet name.
3636
1. Select a **Region** that is close to your area.
37-
1. Select a marketplace image for **Image**.
37+
1. Select an option from **Availability zones** or a qualified availability zone will be automatically picked up for you.
38+
1. Select a **Security type** that is available for a Virtual Machine (VM).
39+
1. Select a marketplace image for **Image**.
40+
1. Select **Architecture** for your VM. Available options are `Arm64` or `x64`.
3841
1. For **Virtual machine types**, select whether you're deploying Spot VMs, Standard VMs, or both. In this example, we select both.
39-
1. Specify 3 to 15 virtual machine (VM) sizes for **Sizes**.
42+
1. Specify 3 to 15 VM sizes for **Sizes**.
4043
1. **For Spot fleet deployment:** Under **VM capacity**, specify your target capacity for Spot VM instance count between 1 and 10,000.
41-
1. **For Standard fleet deployment:** Under **VM capacity**, specify your target capacity for Standard VM instance count between 1 and 10,000.
44+
1. **For Standard fleet deployment:** Under **VM capacity**, specify your target capacity for Standard VM instance count between 1 and 10,000.
45+
1. Select **Allocation strategy** to what factors you would like to prioritize when procuring VM size.
46+
1. Enter the **Max hourly price per Spot VM (USD)**. Note that Spot VMs above your maximum hourly price will be evicted.
4247

4348
1. Under **Administrator account** configure the admin username and set up an associated password or SSH public key.
44-
- A **Password** must be at least 12 characters long and meet three out of the four following complexity requirements: one lower case character, one upper case character, one number, and one special character. For more information, see [username and password requirements](/azure/virtual-machines/windows/faq#what-are-the-password-requirements-when-creating-a-vm-).
49+
- A **Password** must be at least 12 characters long and meet three out of the four following complexity requirements: one lowercase character, one uppercase character, one number, and one special character. For more information, see [username and password requirements](/azure/virtual-machines/windows/faq#what-are-the-password-requirements-when-creating-a-vm-).
4550
- If you select a Linux OS disk image, you can instead choose **SSH public key**. You can use an existing key or create a new one. In this example, Azure generates a new key pair for us. For more information on generating key pairs, see [create and use SSH keys](/azure/virtual-machines/linux/mac-create-ssh-keys).
4651

4752
1. Select **Next: Networking** to move the networking configuration options. For this quickstart, leave the default networking configurations.

articles/azure-functions/durable/durable-functions-dotnet-isolated-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ This guide assumes you're starting with a .NET Durable Functions 2.x project.
9494

9595
### Update your project
9696

97-
The first step is to update your project to [Azure Functions .NET isolated](../migrate-version-3-version-4.md). Then, update your Durable Functions NuGet package references.
97+
The first step is to update your project to [Azure Functions .NET isolated](../migrate-dotnet-to-isolated-model.md). Then, update your Durable Functions NuGet package references.
9898

9999
Old:
100100

articles/azure-maps/release-notes-map-control.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This document contains information about new features and other changes to the M
1616

1717
## v3 (latest)
1818

19-
### [3.6.0] (CDN: February 18, 2025, npm: TBA)
19+
### [3.6.0] (CDN: February 18, 2025, npm: February 20, 2025)
2020

2121
#### New features
2222
* Add a new option `StyleOptions.styleOverrides` which controls the visibility of various map elements, including `countryRegion`, `adminDistrict`, `adminDistrict2`, `buildingFootprint`, and `roadDetails`.
@@ -29,15 +29,15 @@ This document contains information about new features and other changes to the M
2929
#### Other changes
3030
* Disable the telemetry by default.
3131

32-
### [3.5.0] (CDN: November 4, 2024, npm: November 7)
32+
### [3.5.0] (CDN: November 4, 2024, npm: November 7, 2024)
3333

3434
#### New features
3535
- Add support for fullscreen control.
3636

3737
#### Bug fixes
3838
- Expose new type on `PolygonExtrusionLayerOptions.fillPattern` to support `DataDrivenPropertyValueSpecification<string>`.
3939

40-
### [3.4.0] (CDN: September 30, 2024, npm: October 2)
40+
### [3.4.0] (CDN: September 30, 2024, npm: October 2, 2024)
4141

4242
#### New features
4343
- Add support for PMTiles.

0 commit comments

Comments
 (0)