Skip to content

Commit 26fd547

Browse files
committed
Acrolinx is being finicky
1 parent afc948d commit 26fd547

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

includes/iot-hub-prepare-resource-manager.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@ The following steps show how to set up authentication for your app to register w
3232
Select-AzSubscription -SubscriptionName "{your-subscription-name}"
3333
```
3434

35-
1. Save your **Id** and **TenantId** for later.
35+
1. Save your `Id` and `TenantId` for later.
3636

3737
1. Create a new Azure Active Directory application using the following command, replacing these placeholders with your own values:
3838

3939
* **{Display name}:** a display name for your application such as **MySampleApp**
40-
* **{Application identifier}:** A unique identifier such as your primary domain. To find the primary domain associated with your subscription, go to the [Azure portal](https://ms.portal.azure.com/#home) in the **Azure Active Directory** service on its **Overview page** and find **Primary domain**. See the different domain possibilities in the [Azure Active Directory app manifest](/azure/active-directory/develop/reference-app-manifest#identifieruris-attribute). Be sure to add `/your-id` at the end of your domain (your Id can be any name), for example, `"https://microsoft.onmicrosoft.com/my-unique-ad-app"`.
40+
* **{Application identifier}:** A unique identifier such as your primary domain. To find the primary domain associated with your subscription, go to the [Azure portal](https://ms.portal.azure.com/#home) in the **Azure Active Directory** service on its **Overview page** and find **Primary domain**. See the different domain possibilities in the [Azure Active Directory app manifest](/azure/active-directory/develop/reference-app-manifest#identifieruris-attribute). Be sure to add `/your-id` at the end of your domain (`your-Id` can be any name), for example, `"https://microsoft.onmicrosoft.com/my-unique-ad-app"`.
4141

4242
:::image type="content" source="/includes/media/iot-hub-prepare-resource-manager/find-domain.png" alt-text="Screenshot showing location of your Primary domain in the Azure portal.":::
4343

4444
```powershell
4545
$myApp = New-AzADApplication -DisplayName "<your-display-name>" -IdentifierUris "<your-domain>/<your-id>"
4646
New-AzADServicePrincipal -AppId $myApp.AppId
4747
```
48-
A confirmation of your Display name, Id, and App Id will print to the console.
48+
A confirmation of your `Display name`, `Id`, and `AppId` will print to the console.
4949
5050
1. Save the **AppId** of the application you created for later.
5151

0 commit comments

Comments
 (0)