Skip to content

Commit 0a398ed

Browse files
committed
Improved Acrolinx score
1 parent ff32dc2 commit 0a398ed

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.topic: include
66
ms.date: 10/26/2018
77
---
88
## Prepare to authenticate Azure Resource Manager requests
9-
You must authenticate all the operations that you perform on resources using the [Azure Resource Manager][lnk-authenticate-arm] with Azure Active Directory (AD). The easiest way to configure this is to use PowerShell or Azure CLI.
9+
You must authenticate all the operations that you perform on resources using the [Azure Resource Manager][lnk-authenticate-arm] with Azure Active Directory (AD). The easiest way to configure Azure AD is to use PowerShell or Azure CLI.
1010

1111
Install the [Azure PowerShell cmdlets][lnk-powershell-install] before you continue.
1212

@@ -32,20 +32,20 @@ The following steps show how to set up password authentication for an AD applica
3232
Select-AzSubscription -SubscriptionName "{your subscription name}"
3333
```
3434

35-
1. Save your **TenantId** and **SubscriptionId**. You need them later.
35+
1. Save your **TenantId** and **SubscriptionId** for later.
3636

3737
1. Create a new Azure Active Directory application using the following command, replacing the placeholders:
3838

3939
* **{Display name}:** a display name for your application such as **MySampleApp**
40-
* **{Home page URL}:** the URL of the home page of your app such as **http:\//mysampleapp/home**. This URL does not need to point to a real application.
41-
* **{Application identifier}:** A unique identifier such as **http:\//mysampleapp**. This URL does not need to point to a real application.
40+
* **{Home page URL}:** the URL of the home page of your app such as **http:\//mysampleapp/home**. This URL doesn't need to point to a real application.
41+
* **{Application identifier}:** A unique identifier such as **http:\//mysampleapp**. This URL doesn't need to point to a real application.
4242
* **{Password}:** A password that you use to authenticate with your app.
4343

4444
```powershell
4545
$SecurePassword=ConvertTo-SecureString {password} -asplaintext -force
4646
New-AzADApplication -DisplayName {Display name} -HomePage {Home page URL} -IdentifierUris {Application identifier} -Password $SecurePassword
4747
```
48-
1. Save the **ApplicationId** of the application you created. You need this later.
48+
1. Save the **ApplicationId** of the application you created for later.
4949
5050
1. Create a new service principal using the following command, replacing **{MyApplicationId}** with the **ApplicationId** from the previous step:
5151

0 commit comments

Comments
 (0)