title | description | services | documentationcenter | author | manager | editor | ms.assetid | ms.service | ms.devlang | ms.topic | ms.tgt_pltfrm | ms.workload | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Create an IoT Hub using Azure CLI (az.py) | Microsoft Docs |
How to create an Azure IoT hub using the cross-platform Azure CLI 2.0 (Preview) (az.py). |
iot-hub |
.net |
dominicbetts |
timlt |
iot-hub |
multiple |
article |
na |
na |
12/15/2016 |
dobett |
[!INCLUDE iot-hub-resource-manager-selector]
You can use Azure CLI 2.0 (Preview) (az.py) to create and manage Azure IoT hubs programmatically. This article shows you how to use the Azure CLI 2.0 (Preview) (az.py) to create an IoT hub.
You can complete the task using one of the following CLI versions:
- Azure CLI (azure.js) – the CLI for the classic and resource management deployment models.
- Azure CLI 2.0 (Preview) (az.py) - the next generation CLI for the resource management deployment model as described in this article.
To complete this tutorial, you need the following:
- An active Azure account. If you don't have an account, you can create a free account in just a couple of minutes.
- Azure CLI 2.0 (Preview).
Sign in to your Azure account and configure the Azure CLI to work with IoT Hub resources.
-
At the command prompt, run the login command:
az login
Follow the instructions to authenticate using the code and sign in to your Azure account through a web browser.
-
If you have multiple Azure subscriptions, signing in to Azure grants you access to all the Azure accounts associated with your credentials. Use the following command to list the Azure accounts available for you to use:
az account list
Use the following command to select subscription that you want to use to run the commands to create your IoT hub. You can use either the subscription name or ID from the output of the previous command:
az account set --subscription {your subscription name or id}
-
Install the Azure CLI iot component. Run the following command to add the iot component:
az component update --add iot
-
Register the IoT provider before you can deploy IoT resources. Run the following command to register the IoT provider:
az provider register -namespace Microsoft.Devices
Use the Azure CLI to create a resource group and then add an IoT hub.
-
When you create an IoT hub, you must create it in a resource group. Either use an existing resource group, or run the following command to create a resource group:
az group create --name {your resource group name} --location westus
[!TIP] The previous example creates the resource group in the West US location. You can view a list of available locations by running the command
az account list-locations -o table
. -
Run the following command to create an IoT hub in your resource group:
az iot hub create --name {your iot hub name} --resource-group {your resource group name} --sku S1
Note
The name of your IoT hub must be globally unique. The previous command creates an IoT hub in the S1 pricing tier for which you are billed. For more information, see Azure IoT Hub pricing.
You can use the Azure CLI to delete an individual resource, such as an IoT hub, or delete a resource group and all its resources, including any IoT hubs.
To delete an IoT hub, run the following command:
az resource delete --name {your iot hub name} --resource-group {your resource group name} --resource-type Microsoft.Devices/IotHubs
To delete a resource group and all its resources, run the following command:
az group delete --name {your resource group name}
To learn more about developing for IoT Hub, see the following articles:
To further explore the capabilities of IoT Hub, see: