Skip to content

Commit 2cc0cbe

Browse files
authored
Merge pull request #231796 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 5923f8e + d655643 commit 2cc0cbe

File tree

14 files changed

+39
-35
lines changed

14 files changed

+39
-35
lines changed

articles/active-directory/app-provisioning/provision-on-demand.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ There are currently a few known limitations to on-demand provisioning. Post your
173173
* Restoring a previously soft-deleted user in the target tenant with on-demand provisioning isn't supported. If you try to soft delete a user with on-demand provisioning and then restore the user, it can result in duplicate users.
174174
* On-demand provisioning of roles isn't supported.
175175
* On-demand provisioning supports disabling users that have been unassigned from the application. However, it doesn't support disabling or deleting users that have been disabled or deleted from Azure AD. Those users won't appear when you search for a user.
176+
* On-demand provisioning does not support nested groups that are not directly assigned to the application.
176177

177178
## Next steps
178179

articles/active-directory/develop/troubleshoot-required-resource-access-limits.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer: phsignor, jawoods
1414

1515
# Troubleshooting the configured permissions limits
1616

17-
The `RequiredResourceAccess` collection (RRA) on an application object contains all the configured API permissions that an app requires for its default consent request. This collection has various limits depending on which types of identities the app supports, For more information on the limits for supported account types, see [Validation differences by supported account types](supported-accounts-validation.md).
17+
The `RequiredResourceAccess` collection (RRA) on an application object contains all the configured API permissions that an app requires for its default consent request. This collection has various limits depending on which types of identities the app supports. For more information on the limits for supported account types, see [Validation differences by supported account types](supported-accounts-validation.md).
1818

1919
The limits on maximum permissions were updated in May 2022, so some apps may have more permissions in their RRA than are now allowed. In addition, apps that change their supported account types after configuring permissions may exceed the limits of the new setting. When apps exceed the configured permissions limit, no new permissions may be added until the number of permissions in the `RequiredResourceAccess` collection is brought back under the limits.
2020

@@ -35,7 +35,6 @@ If you still need the application or are unsure, the following steps will help y
3535
1. **Remove duplicate permissions.** In some cases, the same permission is listed multiple times. Review the required permissions and remove permissions that are listed two or more times. See the related PowerShell script on the [additional resources](#additional-resources) section of this article.
3636
2. **Remove unused permissions.** Review the permissions required by the application and compare them to what the application or service does. Remove permissions that are configured in the app registration, but which the application or service doesn’t require. For more information on how to review permissions, see [Review application permissions](../manage-apps/manage-application-permissions.md)
3737
3. **Remove redundant permissions.** In many APIs, including Microsoft Graph, some permissions aren't necessary when other more privileged permissions are included. For example, the Microsoft Graph permission User.Read.All (read all users) isn't needed when an application also has User.ReadWrite.All (read, create and update all users). To learn more about Microsoft Graph permissions, see [Microsoft Graph permissions reference](/graph/permissions-reference).
38-
4. **Use multiple app registrations.** If a single app or service requires more than 400 permissions in the required permissions list, the app will need to be configured to use two (or more) different app registrations, each one with 400 or fewer permissions configured on the app registration.
3938

4039
## Frequently asked questions (FAQ)
4140

@@ -147,4 +146,4 @@ process {
147146

148147
- Learn about API permissions and the Microsoft identity platform: [Overview of permissions and consent in the Microsoft identity platform](permissions-consent-overview.md)
149148
- Understand the permissions available for Microsoft Graph: [Microsoft Graph permissions reference](/graph/permissions-reference)
150-
- Review the limitations to application configurations: [Validation differences by supported account types](supported-accounts-validation.md)
149+
- Review the limitations to application configurations: [Validation differences by supported account types](supported-accounts-validation.md)

articles/active-directory/manage-apps/manage-application-permissions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Each option generates PowerShell scripts that enable you to control user access
5858
Use the following Azure AD PowerShell script to revoke all permissions granted to an application.
5959

6060
```powershell
61-
Connect-AzureAD -Scopes "Application.ReadWrite.All", "Directory.ReadWrite.All", "DelegatedPermissionGrant.ReadWrite.All" "AppRoleAssignment.ReadWrite.All",
61+
Connect-AzureAD
6262
6363
# Get Service Principal using objectId
6464
$sp = Get-AzureADServicePrincipal -ObjectId "<ServicePrincipal objectID>"
@@ -85,7 +85,7 @@ $spApplicationPermissions | ForEach-Object {
8585
Remove appRoleAssignments for users or groups to the application using the following scripts.
8686

8787
```powershell
88-
Connect-AzureAD -Scopes "Application.ReadWrite.All", "Directory.ReadWrite.All", "AppRoleAssignment.ReadWrite.All"
88+
Connect-AzureAD
8989
9090
# Get Service Principal using objectId
9191
$sp = Get-AzureADServicePrincipal -ObjectId "<ServicePrincipal objectID>"

articles/azure-government/documentation-government-aad-auth-qs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The only variation when setting up Azure AD Authorization on the Azure Governmen
5555

5656
```cs
5757
//ClientId: Azure AD-> App registrations -> Application ID
58-
//Domain: <tenantname>.onmicrosoft.com
58+
//Domain: <tenantname>.onmicrosoft.us
5959
//TenantId: Azure AD -> Properties -> Directory ID
6060
6161
"Authentication": {
@@ -71,7 +71,7 @@ The only variation when setting up Azure AD Authorization on the Azure Governmen
7171
```
7272
4. Fill out the `ClientId` property with the Client ID for your app from the Azure Government portal. You can find the Client ID by navigating to Azure AD -> App Registrations -> Your Application -> Application ID.
7373
5. Fill out the `TenantId` property with the Tenant ID for your app from the Azure Government portal. You can find the Tenant ID by navigating to Azure AD -> Properties -> Directory ID.
74-
6. Fill out the `Domain` property with `<tenantname>.onmicrosoft.com`.
74+
6. Fill out the `Domain` property with `<tenantname>.onmicrosoft.us`.
7575
7. Open the `startup.cs` file.
7676
8. In your `ConfigureServices` method, add the following code:
7777

articles/azure-maps/glossary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ The following list describes common words used with the Azure Maps services.
281281

282282
<a name="postal-code"></a> **Postal code**: A series of letters or numbers, or both, in a specific format. The postal-code is used by the postal service of a country/region to divide geographic areas into zones in order to simplify delivery of mail.
283283

284-
<a name="primary-key"></a> **Primary key**: The first of two subscriptions keys provided for Azure Maps shared key authentication. See [Shared key authentication](#shared-key-authentication).
284+
<a name="primary-key"></a> **Primary key**: The first of two subscription keys provided for Azure Maps shared key authentication. See [Shared key authentication](#shared-key-authentication).
285285

286286
<a name="prime-meridian"></a> **Prime meridian**: A line of longitude that represents 0-degrees longitude. Generally, longitude values decrease when traveling in a westerly direction until 180 degrees and increase when traveling in easterly directions to -180-degrees.
287287

articles/azure-maps/how-to-use-spatial-io-module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ You can load the Azure Maps spatial IO module using one of the two options:
219219
</html>
220220
```
221221

222-
5. Remember to replace `<Your Azure Maps Key>` with your primary key. Open your HTML file, and you'll see results similar to the following image:
222+
5. Remember to replace `<Your Azure Maps Key>` with your subscription key. Open your HTML file, and you'll see results similar to the following image:
223223

224224
<center>
225225

articles/azure-maps/quick-android-map.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@ Create a new Azure Maps account using the following steps:
4949

5050
:::image type="content" source="./media/shared/create-account.png" alt-text="A screenshot that shows the Create Maps account pane in the Azure portal.":::
5151

52-
## Get the primary key for your account
52+
## Get the subscription key for your account
5353

54-
Once your Azure Maps account is successfully created, retrieve the primary key that enables you to query the Maps APIs.
54+
Once your Azure Maps account is successfully created, retrieve the subscription key that enables you to query the Maps APIs.
5555

5656
1. Open your Azure Maps account in the portal.
5757
2. In the left pane, select **Authentication**.
5858
3. Copy the **Primary Key** and save it locally to use later in this tutorial.
5959

6060
>[!NOTE]
61-
> If you use the Azure subscription key instead of the Azure Maps primary key, your map won't render properly. Also, for security purposes, it is recommended that you rotate between your primary and secondary keys. To rotate keys, update your app to use the secondary key, deploy, then press the cycle/refresh button beside the primary key to generate a new primary key. The old primary key will be disabled. For more information on key rotation, see [Set up Azure Key Vault with key rotation and auditing](../key-vault/secrets/tutorial-rotation-dual.md)
61+
> For security purposes, it is recommended that you rotate between your primary and secondary keys. To rotate keys, update your app to use the secondary key, deploy, then press the cycle/refresh button beside the primary key to generate a new primary key. The old primary key will be disabled. For more information on key rotation, see [Set up Azure Key Vault with key rotation and auditing](../key-vault/secrets/tutorial-rotation-dual.md)
6262
6363
:::image type="content" source="./media/quick-android-map/get-key.png" alt-text="A screenshot showing the Azure Maps Primary key in the Azure portal.":::
6464

articles/azure-maps/quick-demo-map-app.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Quickstart: Interactive map search with Azure Maps'
33
titeSuffix: Microsoft Azure Maps
4-
description: 'Quickstart: Learn how to create interactive, searchable maps. See how to create an Azure Maps account, get a primary key, and use the Web SDK to set up map applications'
4+
description: 'Quickstart: Learn how to create interactive, searchable maps. See how to create an Azure Maps account, get the subscription key, and use the Web SDK to set up map applications'
55
author: eriklindeman
66
ms.author: eriklind
77
ms.date: 12/23/2021
@@ -16,7 +16,7 @@ ms.custom: mvc, mode-other
1616
In this quickstart, you will learn how to use Azure Maps to create a map that gives users an interactive search experience. It walks you through these basic steps:
1717

1818
* Create your own Azure Maps account.
19-
* Get your primary key to use in the demo web application.
19+
* Get your Azure Maps subscription key to use in the demo web application.
2020
* Download and open the demo map application.
2121

2222
This quickstart uses the Azure Maps Web SDK, however the Azure Maps service can be used with any map control, such as these popular [open-source map controls](open-source-projects.md#third-part-map-control-plugins) that the Azure Maps team has created plugin's for.
@@ -49,13 +49,13 @@ Create a new Azure Maps account with the following steps:
4949

5050
## Get the subscription key for your account
5151

52-
Once your Azure Maps account is successfully created, retrieve the primary key that enables you to query the Maps APIs.
52+
Once your Azure Maps account is successfully created, retrieve the subscription key that enables you to query the Maps APIs.
5353

5454
1. Open your Maps account in the portal.
5555
2. In the settings section, select **Authentication**.
5656
3. Copy the **Primary Key** and save it locally to use later in this tutorial.
5757

58-
:::image type="content" source="./media/quick-demo-map-app/get-key.png" alt-text="Screenshot showing your Azure Maps Primary Key in the Azure portal" lightbox="./media/quick-demo-map-app/get-key.png":::
58+
:::image type="content" source="./media/quick-demo-map-app/get-key.png" alt-text="Screenshot showing your Azure Maps subscription key in the Azure portal" lightbox="./media/quick-demo-map-app/get-key.png":::
5959

6060
>[!NOTE]
6161
> This quickstart uses the [Shared Key](azure-maps-authentication.md#shared-key-authentication) authentication approach for demonstration purposes, but the preferred approach for any production environment is to use [Azure Active Directory](azure-maps-authentication.md#azure-ad-authentication) authentication.
@@ -67,7 +67,7 @@ Once your Azure Maps account is successfully created, retrieve the primary key t
6767
3. Add the **Primary Key** value you got in the preceding section
6868
1. Comment out all of the code in the `authOptions` function, this code is used for Azure Active Directory authentication.
6969
1. Uncomment the last two lines in the `authOptions` function, this code is used for Shared Key authentication, the approach being used in this quickstart.
70-
1. Replace `<Your Azure Maps Key>` with the **Primary Key** value from the preceding section.
70+
1. Replace `<Your Azure Maps Key>` with the subscription key value from the preceding section.
7171

7272
## Open the demo application
7373

articles/azure-maps/quick-ios-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Create a new Azure Maps account with the following steps:
5252

5353
![Create an Azure maps account.](./media/shared/create-account.png)
5454

55-
## Get the primary key for your account
55+
## Get the subscription key for your account
5656

5757
Once your Maps account is successfully created, retrieve the primary key that enables you to query the Maps APIs.
5858

articles/azure-vmware/includes/vmware-software-versions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The VMware solution software versions used in new deployments of Azure VMware So
1919
| VMware ESXi | [7.0 U3c](https://docs.vmware.com/en/VMware-vSphere/7.0/rn/vsphere-esxi-70u3c-release-notes.html) |
2020
| VMware vSAN | [7.0 U3c](https://docs.vmware.com/en/VMware-vSphere/7.0/rn/vmware-vsan-703-release-notes.html) |
2121
| VMware vSAN on-disk format | [10](https://kb.vmware.com/s/article/2148493) |
22-
| VMware HCX | [4.4.2](https://docs.vmware.com/en/VMware-HCX/4.4.2/rn/vmware-hcx-442-release-notes/index.html) |
22+
| VMware HCX | [4.5.0](https://docs.vmware.com/en/VMware-HCX/4.5/rn/vmware-hcx-45-release-notes/index.html) |
2323
| VMware NSX-T Data Center <br />**NOTE:** VMware NSX-T Data Center is the only supported version of NSX Data Center. | [!INCLUDE [nsxt-version](nsxt-version.md)] |
2424

2525
The current running software version is applied to new clusters added to an existing private cloud.

0 commit comments

Comments
 (0)