Skip to content

Commit 600bd8d

Browse files
committed
Minor edits in wording
1 parent a091eae commit 600bd8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/iot-hub/iot-hub-rm-template-powershell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.custom: devx-track-azurepowershell
1515

1616
[!INCLUDE [iot-hub-resource-manager-selector](../../includes/iot-hub-resource-manager-selector.md)]
1717

18-
This article shows you how to use an Azure Resource Manager template to create an IoT Hub and a [consumer group](https://learn.microsoft.com/azure/event-hubs/event-hubs-features#consumer-groups), using Azure PowerShell. Resource Manager templates are JSON files that define the resources you need to deploy for your solution. For more information about developing Resource Manager templates, see [Azure Resource Manager documentation](../azure-resource-manager/index.yml).
18+
This article shows you how to use an Azure Resource Manager template to create an IoT Hub and a [consumer group](https://learn.microsoft.com/azure/event-hubs/event-hubs-features#consumer-groups), using Azure PowerShell. Resource Manager templates are JSON files that define the resources you need to deploy for your solution. For more information about developing Resource Manager templates, see the [Azure Resource Manager documentation](../azure-resource-manager/index.yml).
1919

2020
## Prerequisites
2121

@@ -29,11 +29,11 @@ The [Resource Manager JSON template](https://azure.microsoft.com/resources/templ
2929

3030
Use the following PowerShell command to create a resource group which is then used to create an IoT hub. The JSON template is used in `-TemplateUri`.
3131

32-
To run the following PowerShell script, select **Try it** to open the Azure Cloud Shell. Copy the script, paste it into the shell, and answer the prompts to create a new resource, choose a region, and create a new IoT hub.
32+
To run the following PowerShell script, select **Try it** to open the Azure Cloud Shell. Copy the script, paste into your shell, then press enter. Answer the prompts. These prompts will help you to create a new resource, choose a region, and create a new IoT hub. Once answered, a confirmation of your IoT hub prints to the console.
3333

3434
```azurepowershell-interactive
3535
$resourceGroupName = Read-Host -Prompt "Enter the Resource Group name"
36-
$location = Read-Host -Prompt "Enter the location (i.e. centralus)"
36+
$location = Read-Host -Prompt "Enter the location (for example: centralus)"
3737
$iotHubName = Read-Host -Prompt "Enter the IoT Hub name"
3838
3939
New-AzResourceGroup -Name $resourceGroupName -Location "$location"

0 commit comments

Comments
 (0)