Skip to content

Commit 5ec28c7

Browse files
committed
azure login steps
1 parent 0d424e8 commit 5ec28c7

File tree

1 file changed

+20
-10
lines changed

1 file changed

+20
-10
lines changed

articles/search/search-get-started-rbac.md

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,29 @@ This step is necessary if you have more than one subscription or tenant.
3434

3535
1. Notice the subscription name and ID in **Overview** > **Essentials**.
3636

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.
3838

3939
:::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":::
4040

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:
4242

43-
`az account show`
43+
```azurecli
44+
az account show
45+
```
4446

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:
4648

47-
`az account set --subscription <your-subscription-id>`
49+
```azurecli
50+
az account set --subscription <your-subscription-id>
4851
49-
`az login --tenant <your-tenant-id>`
52+
az login --tenant <your-tenant-id>
53+
```
5054

51-
1. Verify your tenant ID.
55+
1. Verify your tenant ID:
5256

53-
`az account show --query tenantId --output tsv`
57+
```azurecli
58+
az account show --query tenantId --output tsv
59+
```
5460

5561
## Step 2: Configure Azure AI Search for RBAC
5662

@@ -62,7 +68,7 @@ This step is necessary if you have more than one subscription or tenant.
6268

6369
1. Choose **Role-based control** or **Both** if you need time to transition clients to role-based access control.
6470

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.
6672

6773
1. Assign roles in the Azure portal:
6874

@@ -83,7 +89,11 @@ This step is necessary if you have more than one subscription or tenant.
8389
8490
## Step 3: Connect from your local system
8591

86-
If you haven't yet signed in to Azure, do so now with an `az login` command.
92+
If you haven't yet signed in to Azure:
93+
94+
```azurecli
95+
az login
96+
```
8797

8898
### Using Python and Jupyter notebooks
8999

0 commit comments

Comments
 (0)