Skip to content

Commit 6d5f07e

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into tamram-209586a
2 parents 2aff900 + 11fc844 commit 6d5f07e

File tree

75 files changed

+2899
-2271
lines changed

Some content is hidden

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

75 files changed

+2899
-2271
lines changed

articles/active-directory/authentication/how-to-migrate-mfa-server-to-azure-mfa-user-authentication.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: multi-factor-authentication
66
ms.service: active-directory
77
ms.subservice: authentication
88
ms.topic: how-to
9-
ms.date: 08/30/2022
9+
ms.date: 08/31/2022
1010

1111
ms.author: gasinh
1212
author: gargi-sinha
@@ -241,11 +241,6 @@ Microsoft Authenticator can be used as a passwordless sign-in method and a secon
241241
### Register for combined security registration (recommended)
242242

243243
We recommend having your users register for combined security information, which is a single place to register their authentication methods and devices for both MFA and SSPR.
244-
While it's possible to migrate data from the MFA Server to Azure AD MFA, you face these challenges:
245-
246-
* Only phone numbers can be migrated.
247-
* Authenticator apps will need to be reregistered.
248-
* Stale data can be migrated.
249244

250245
Microsoft provides communication templates that you can provide to your users to guide them through the combined registration process.
251246
These include templates for email, posters, table tents, and various other assets. Users register their information at `https://aka.ms/mysecurityinfo`, which takes them to the combined security registration screen.

articles/active-directory/external-identities/index.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ metadata:
1010
ms.subservice: B2B
1111
ms.workload: identity
1212
ms.topic: landing-page
13-
ms.date: 05/19/2020
13+
ms.date: 08/31/2022
1414
author: msmimart
1515
ms.author: mimart
1616
manager: celested
@@ -28,11 +28,11 @@ landingContent:
2828
url: b2b-direct-connect-overview.md
2929
- text: What is Azure AD B2C (business-to-consumer) identity?
3030
url: ../../active-directory-b2c/overview.md
31-
- title: Collaborate with users outside your org (B2B collaboration)
31+
- title: Collaborate with users outside your org (B2B)
3232
linkLists:
3333
- linkListType: concept
3434
links:
35-
- text: Cross-tenant access settings
35+
- text: Overview of cross-tenant access settings
3636
url: cross-tenant-access-overview.md
3737
- text: B2B collaboration user properties
3838
url: user-properties.md
@@ -42,14 +42,14 @@ landingContent:
4242
links:
4343
- text: Configure your external collaboration settings
4444
url: external-collaboration-settings-configure.md
45+
- text: Configure cross-tenant access for B2B collaboration
46+
url: cross-tenant-access-settings-b2b-collaboration.md
4547
- text: Set up SAML/WS-Fed IdP federation
4648
url: direct-federation.md
4749
- text: Set up One-time passcodes
4850
url: one-time-passcode.md
4951
- text: Add and invite guest users
5052
url: add-users-administrator.md
51-
- text: Leave an organization as a guest user
52-
url: leave-the-organization.md
5353
- title: Scale apps to consumers and customers (Azure AD B2C)
5454
linkLists:
5555
- linkListType: overview

articles/aks/cluster-configuration.md

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Cluster configuration in Azure Kubernetes Services (AKS)
33
description: Learn how to configure a cluster in Azure Kubernetes Service (AKS)
44
services: container-service
55
ms.topic: article
6-
ms.date: 08/05/2022
6+
ms.date: 08/31/2022
77
ms.author: jpalma
88
author: palma21
99
---
@@ -140,6 +140,53 @@ As you work with the node resource group, keep in mind that you can't:
140140
- Specify names for the managed resources within the node resource group.
141141
- Modify or delete Azure-created tags of managed resources within the node resource group.
142142

143+
## Node Restriction (Preview)
144+
145+
The [Node Restriction](https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/#noderestriction) admission controller limits the Node and Pod objects a kubelet can modify. Node Restriction is on by default in AKS 1.24+ clusters. If you are using an older version use the below commands to create a cluster with Node Restriction or Update an existing cluster to add Node Restriction.
146+
147+
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
148+
149+
### Before you begin
150+
151+
You must have the following resource installed:
152+
153+
* The Azure CLI
154+
* The `aks-preview` extension version 0.5.95 or later
155+
156+
#### Install the aks-preview CLI extension
157+
158+
```azurecli-interactive
159+
# Install the aks-preview extension
160+
az extension add --name aks-preview
161+
162+
# Update the extension to make sure you have the latest version installed
163+
az extension update --name aks-preview
164+
```
165+
166+
### Create an AKS cluster with Node Restriction
167+
168+
To create a cluster using Node Restriction.
169+
170+
```azurecli-interactive
171+
az aks create -n aks -g myResourceGroup --enable-node-restriction
172+
```
173+
174+
### Update an AKS cluster with Node Restriction
175+
176+
To update a cluster to use Node Restriction.
177+
178+
```azurecli-interactive
179+
az aks update -n aks -g myResourceGroup --enable-node-restriction
180+
```
181+
182+
### Remove Node Restriction from an AKS cluster
183+
184+
To remove Node Restriction from a cluster.
185+
186+
```azurecli-interactive
187+
az aks update -n aks -g myResourceGroup --disable-node-restriction
188+
```
189+
143190
## OIDC Issuer (Preview)
144191

145192
This enables an OIDC Issuer URL of the provider which allows the API server to discover public signing keys.

articles/api-management/api-management-howto-aad-b2c.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@ In this section, you'll create a user flow in your Azure Active Directory B2C te
4242
1. Enter a unique name for the user flow.
4343
1. In **Identity providers**, select **Email signup**.
4444
1. In **User attributes and token claims**, select the attributes and claims needed for the API Management developer portal (not needed for the legacy developer portal).
45-
![Application claims](./media/api-management-howto-aad-b2c/api-management-application-claims.png)
4645
* **Attributes**: Given Name, Surname
47-
* **Claims**: Email Addresses, Given Name, Surname, User’s ObjectID
46+
* **Claims**: Given Name, Surname, Email Addresses, User’s ObjectID
47+
48+
![Application claims](./media/api-management-howto-aad-b2c/api-management-application-claims.png)
4849
1. Select **Create**.
4950

5051
## Configure identity provider for developer portal
-23 KB
Loading

0 commit comments

Comments
 (0)