Azure IoT Central Application

This page shows how to write Terraform and Azure Resource Manager for IoT Central Application and write them securely.

azurerm_iotcentral_application (Terraform)

The Application in IoT Central can be configured in Terraform with the resource name azurerm_iotcentral_application. The following sections describe 2 examples of how to use the resource and its parameters.

Example Usage from GitHub

IoT_Central.tf#L3
resource "azurerm_iotcentral_application" "example" {
  name                = var.iotcentral_name
  resource_group_name = azurerm_resource_group.rg.name
  location            = var.location
  sub_domain          = var.iotcentral_name

main.tf#L7
resource "azurerm_iotcentral_application" "this" {
  display_name        = var.display_name
  location            = var.location
  name                = var.name
  resource_group_name = var.resource_group_name
  sku                 = var.sku

Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Manages an IoT Central Application

Microsoft.IoTCentral/ioTApps (Azure Resource Manager)

The ioTApps in Microsoft.IoTCentral can be configured in Azure Resource Manager with the resource name Microsoft.IoTCentral/ioTApps. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

template.json
{
  "contentVersion": "1.0.0.0",
  "parameters": {
    "workbookDisplayName": {
      "type": "string",
dash.json
{
  "contentVersion": "1.0.0.0",
  "parameters": {
    "workbookDisplayName": {
      "type": "string",
template.json
{
  "contentVersion": "1.0.0.0",
  "parameters": {
    "workbookDisplayName": {
      "type": "string",
template.json
{
  "contentVersion": "1.0.0.0",
  "parameters": {
    "workbookDisplayName": {
      "type": "string",

Frequently asked questions

What is Azure IoT Central Application?

Azure IoT Central Application is a resource for IoT Central of Microsoft Azure. Settings can be wrote in Terraform.

Where can I find the example code for the Azure IoT Central Application?

For Terraform, the Manuss20/azure.samples and niveklabs/azurerm source code examples are useful. See the Terraform Example section for further details.

For Azure Resource Manager, the scautomation/Azure-Inventory-Workbook, rb-cloud-guru/Azure_Dashboard and VJchand-star/Azure source code examples are useful. See the Azure Resource Manager Example section for further details.