You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/search/search-get-started-rbac.md
+20-10Lines changed: 20 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,23 +34,29 @@ This step is necessary if you have more than one subscription or tenant.
34
34
35
35
1. Notice the subscription name and ID in **Overview** > **Essentials**.
36
36
37
-
1.Select the subscription name to confirm the parent management group (tenant ID).
37
+
1.Now select the subscription name to confirm the parent management group (tenant ID) on the next page.
38
38
39
39
:::image type="content" source="media/search-get-started-rbac/select-subscription-name.png" lightbox="media/search-get-started-rbac/select-subscription-name.png" alt-text="Screenshot of the portal page providing the subscription name":::
40
40
41
-
1.Identify the active Azure subscription and tenant on your local device:
41
+
1.Switching to your local device and a command prompt, identify the active Azure subscription and tenant:
42
42
43
-
`az account show`
43
+
```azurecli
44
+
az account show
45
+
```
44
46
45
-
1. If the active subscription is different from the one used by Azure AI Search, change the subscription ID. Next, sign in to Azure using the same tenant ID as Azure AI Search.
47
+
1. If the active subscription is different from the information obtained in the previous step, change the subscription ID. Next, sign in to Azure using the tenant ID also found in the previous step:
46
48
47
-
`az account set --subscription <your-subscription-id>`
49
+
```azurecli
50
+
az account set --subscription <your-subscription-id>
48
51
49
-
`az login --tenant <your-tenant-id>`
52
+
az login --tenant <your-tenant-id>
53
+
```
50
54
51
-
1. Verify your tenant ID.
55
+
1. Verify your tenant ID:
52
56
53
-
`az account show --query tenantId --output tsv`
57
+
```azurecli
58
+
az account show --query tenantId --output tsv
59
+
```
54
60
55
61
## Step 2: Configure Azure AI Search for RBAC
56
62
@@ -62,7 +68,7 @@ This step is necessary if you have more than one subscription or tenant.
62
68
63
69
1. Choose **Role-based control** or **Both** if you need time to transition clients to role-based access control.
64
70
65
-
If you choose **Role-based control**, make sure that you assign yourself all roles named in the next instruction or you won't be able to complete tasks in the portal or through a local client.
71
+
If you choose **Role-based control**, make sure that you assign yourself *all* roles named in the next instruction or you won't be able to complete tasks in the portal or through a local client.
66
72
67
73
1. Assign roles in the Azure portal:
68
74
@@ -83,7 +89,11 @@ This step is necessary if you have more than one subscription or tenant.
83
89
84
90
## Step 3: Connect from your local system
85
91
86
-
If you haven't yet signed in to Azure, do so now with an `az login` command.
0 commit comments