Create your ux4iot Instance
ux4iot is installed in your Azure subscription as a Managed Application. Billing will be handled by Microsoft.
Prerequisits:
You need to have an azure subscription
You need to be owner of the resource group that you deploy your ux4iot into. This is because during the deployment, there is a role assigned between managed resources.
Creating via Azure Marketplace
Visit the offer on Azure Marketplace and click "Get It Now".
Creating via Azure Portal
Go to https://portal.azure.com and search for "ux4iot".
Creating via the command line
If you prefer the command line, the following snippet shows how to do it. See further below for how to retrieve the values for the two parameters.
Concerning the parameters: Specifying the Event Hub compatible connection is required. Configuring the service connection string is optional. It is necessary for the following hooks:
In effect, everything that not only consumes information but accesses the devices in some way.
You can retrieve the service connection string for the IoT Hub with:
You can retrieve the Event Hub compatible endpoint connection string with:
Replace RESOURCE_GROUP_OF_IOT_HUB
with the resource group that your IoT Hub resides in. ReplaceNAME_OF_IOT_HUB
with the name of the IoT Hub. Replace SUBSCRIPTION
with your Azure Subscription.
Creating via Bicep (Azure Resource Manager)
Here is an example Bicep template that you can use to deploy a ux4iot instance.
Notice when you redeploy ux4iot with a different iotHubEventHubConnectionString, you will need to restart your ux4iot. You can do this by navigating in the azure portal to your ux4iot instance and clicking the restart button on the top icon bar.
Any tags you specify for the managed app will be inherited by the created managed resource group.
Before deploying for the first time, you will have to accept the legal terms:
You can now deploy the Bicep template:
Last updated