Skip to content

Commit d9aaa81

Browse files
committed
Azure AD
1 parent a5150fc commit d9aaa81

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

articles/aks/aad-integration-v2.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
---
2-
title: Use Azure Active Directory v2.0 in Azure Kubernetes Service
3-
description: Learn how to use Azure Active Directory v2.0 in Azure Kubernetes Service (AKS)
2+
title: Use Azure AD v2.0 in Azure Kubernetes Service
3+
description: Learn how to use Azure AD v2.0 in Azure Kubernetes Service (AKS)
44
services: container-service
55
manager: gwallace
66
ms.topic: article
77
ms.date: 03/24/2020
88
---
99

10-
# Integrate Azure Active Directory v2.0 in Azure Kubernetes Service (Preview)
10+
# Integrate Azure AD v2.0 in Azure Kubernetes Service (Preview)
1111

1212
> [!Note]
13-
> Existing Azure Active Directory v1.0 clusters are not affected by the new Azure Active Directory v2.0 feature for AKS.
13+
> Existing Azure AD v1.0 clusters are not affected by the new Azure AD v2.0 feature for AKS.
1414
15-
Azure Active Directory v2.0 is designed to simplify the Azure Active Directory v1.0 experience, where users were required to create a client app, a server app, and required the Azure Active Directory tenant to grant Directory Read permissions.
16-
In the new version, the AKS resource provider manages the client and server apps for you. Instead of using a persistent "Application Permission," the AKS resource provider uses a "Delegated Permission" via an on-behalf-of flow to get an access token to Graph API. Azure Active Directory v2.0 enabled clusters use a limited scoped Graph API privilege (GroupMembers.Read.All) to query group membership only when the overage indicator is present (when there are more than 250 group claims).
15+
Azure AD v2.0 is designed to simplify the Azure AD v1.0 experience, where users were required to create a client app, a server app, and required the Azure AD tenant to grant Directory Read permissions.
16+
In the new version, the AKS resource provider manages the client and server apps for you. Instead of using a persistent "Application Permission," the AKS resource provider uses a "Delegated Permission" via an on-behalf-of flow to get an access token to Graph API. Azure AD v2.0 enabled clusters use a limited scoped Graph API privilege (GroupMembers.Read.All) to query group membership only when the overage indicator is present (when there are more than 250 group claims).
1717

1818
## Limitations
1919

20-
* You can't currently upgrade an existing Azure Active Directory v1.0 cluster to Azure Active Directory v2.0.
20+
* You can't currently upgrade an existing Azure AD v1.0 cluster to Azure AD v2.0.
2121

2222
> [!IMPORTANT]
2323
> AKS preview features are available on a self-service, opt-in basis. Previews are provided "as-is" and "as available," and are excluded from the Service Level Agreements and limited warranty. AKS previews are partially covered by customer support on a best-effort basis. As such, these features are not meant for production use. For more information, see the following support articles:
@@ -74,7 +74,7 @@ When the status shows as registered, refresh the registration of the `Microsoft.
7474
az provider register --namespace Microsoft.ContainerService
7575
```
7676

77-
## Create an AKS cluster with Azure Active Directory v1.0 enabled
77+
## Create an AKS cluster with Azure AD v1.0 enabled
7878

7979
You can now create an AKS cluster by using the following CLI commands.
8080

@@ -90,22 +90,22 @@ Then, create an AKS cluster:
9090
```azurecli-interactive
9191
az aks create -g MyResourceGroup -n MyManagedCluster --enable-aad
9292
```
93-
The above command creates a three node AKS cluster, but the user, who created the cluster, by default, is not a member of a group that has access to this cluster. This user needs to create an Azure Active Directory group, add themselves as a member of the group, and then update the cluster as shown below. Follow instructions [here](https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-groups-create-azure-portal)
93+
The above command creates a three node AKS cluster, but the user, who created the cluster, by default, is not a member of a group that has access to this cluster. This user needs to create an Azure AD group, add themselves as a member of the group, and then update the cluster as shown below. Follow instructions [here](https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-groups-create-azure-portal)
9494

95-
Once you've created a group and added yourself (and others) as a member, you can update the cluster with the Azure Active Directory group using the following command
95+
Once you've created a group and added yourself (and others) as a member, you can update the cluster with the Azure AD group using the following command
9696

9797
```azurecli-interactive
9898
az aks update -g MyResourceGroup -n MyManagedCluster --enable-aad [--aad-admin-group-object-ids <id1,id2>] [--aad-tenant-id <id>]
9999
```
100-
Alternatively, if you first create a group and add members, you can enable the Azure Active Directory group at create time using the following command,
100+
Alternatively, if you first create a group and add members, you can enable the Azure AD group at create time using the following command,
101101

102102
```azurecli-interactive
103103
az aks create -g MyResourceGroup -n MyManagedCluster --enable-aad [--aad-admin-group-object-ids <id1,id2>] [--aad-tenant-id <id>]
104104
```
105105

106-
A successful creation of an Azure Active Directory v2 cluster has the following section in the response body
106+
A successful creation of an Azure AD v2 cluster has the following section in the response body
107107
```
108-
"Azure Active DirectoryProfile": {
108+
"Azure ADProfile": {
109109
"adminGroupObjectIds": null,
110110
"clientAppId": null,
111111
"managed": true,
@@ -117,7 +117,7 @@ A successful creation of an Azure Active Directory v2 cluster has the following
117117

118118
The cluster is created within a few minutes.
119119

120-
## Accessing an Azure Active Directory v1.0 enabled cluster
120+
## Accessing an Azure AD v1.0 enabled cluster
121121
To get the admin credentials to access the cluster:
122122

123123
```azurecli-interactive

0 commit comments

Comments
 (0)