Microsoft.Kusto clusters 2018-09-07-preview

Bicep resource definition

The clusters resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Kusto/clusters resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Kusto/clusters@2018-09-07-preview' = {
  location: 'string'
  name: 'string'
  properties: {
    trustedExternalTenants: [
      {
        value: 'string'
      }
    ]
  }
  sku: {
    capacity: int
    name: 'string'
    tier: 'string'
  }
  tags: {
    {customized property}: 'string'
  }
}

Property values

AzureSku

Name Description Value
capacity SKU capacity. int
name SKU name. 'D13_v2'
'D14_v2'
'KC16'
'KC8'
'KS16'
'KS8'
'L16'
'L8' (required)
tier SKU tier. 'Standard' (required)

ClusterProperties

Name Description Value
trustedExternalTenants The cluster's external tenants. TrustedExternalTenant[]

Microsoft.Kusto/clusters

Name Description Value
location The geo-location where the resource lives string (required)
name The resource name string (required)
properties Class representing the Kusto cluster properties. ClusterProperties
sku The SKU of the cluster. AzureSku (required)
tags Resource tags Dictionary of tag names and values. See Tags in templates

TrackedResourceTags

Name Description Value

TrustedExternalTenant

Name Description Value
value GUID representing an external tenant. string

Quickstart samples

The following quickstart samples deploy this resource type.

Bicep File Description
Azure Digital Twins with Time Data History Connection This template creates an Azure Digital Twins instance configured with a time series data history connection. In order to create a connection, other resources must be created such as an Event Hubs namespace, an event hub, Azure Data Explorer cluster, and a database. Data is sent to an event hub which eventually forwards the data to the Azure Data Explorer cluster. Data is stored in a database table in the cluster
Create a database watcher This sample creates a database watcher for Azure SQL and configures its data store, SQL targets, and managed private endpoints
Deploy Azure Data Explorer DB with Cosmos DB connection Deploy Azure Data Explorer DB with Cosmos DB connection.
Deploy Azure Data Explorer db with Event Grid connection Deploy Azure Data Explorer db with Event Grid connection.
Deploy Azure Data Explorer db with Event Hub connection Deploy Azure Data Explorer db with Event Hub connection.

ARM template resource definition

The clusters resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Kusto/clusters resource, add the following JSON to your template.

{
  "type": "Microsoft.Kusto/clusters",
  "apiVersion": "2018-09-07-preview",
  "name": "string",
  "location": "string",
  "properties": {
    "trustedExternalTenants": [
      {
        "value": "string"
      }
    ]
  },
  "sku": {
    "capacity": "int",
    "name": "string",
    "tier": "string"
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property values

AzureSku

Name Description Value
capacity SKU capacity. int
name SKU name. 'D13_v2'
'D14_v2'
'KC16'
'KC8'
'KS16'
'KS8'
'L16'
'L8' (required)
tier SKU tier. 'Standard' (required)

ClusterProperties

Name Description Value
trustedExternalTenants The cluster's external tenants. TrustedExternalTenant[]

Microsoft.Kusto/clusters

Name Description Value
apiVersion The api version '2018-09-07-preview'
location The geo-location where the resource lives string (required)
name The resource name string (required)
properties Class representing the Kusto cluster properties. ClusterProperties
sku The SKU of the cluster. AzureSku (required)
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.Kusto/clusters'

TrackedResourceTags

Name Description Value

TrustedExternalTenant

Name Description Value
value GUID representing an external tenant. string

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Azure Digital Twins with Time Data History Connection

Deploy to Azure
This template creates an Azure Digital Twins instance configured with a time series data history connection. In order to create a connection, other resources must be created such as an Event Hubs namespace, an event hub, Azure Data Explorer cluster, and a database. Data is sent to an event hub which eventually forwards the data to the Azure Data Explorer cluster. Data is stored in a database table in the cluster
Create a cluster a database

Deploy to Azure
This template allows you to create a cluster and a database.
Create a database watcher

Deploy to Azure
This sample creates a database watcher for Azure SQL and configures its data store, SQL targets, and managed private endpoints
Deploy Azure Data Explorer cluster into your VNet

Deploy to Azure
This template allows you deploy a cluster into your VNet.
Deploy Azure Data Explorer DB with Cosmos DB connection

Deploy to Azure
Deploy Azure Data Explorer DB with Cosmos DB connection.
Deploy Azure Data Explorer db with Event Grid connection

Deploy to Azure
Deploy Azure Data Explorer db with Event Grid connection.
Deploy Azure Data Explorer db with Event Hub connection

Deploy to Azure
Deploy Azure Data Explorer db with Event Hub connection.

Terraform (AzAPI provider) resource definition

The clusters resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Kusto/clusters resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Kusto/clusters@2018-09-07-preview"
  name = "string"
  location = "string"
  sku = {
    capacity = int
    name = "string"
    tier = "string"
  }
  tags = {
    {customized property} = "string"
  }
  body = jsonencode({
    properties = {
      trustedExternalTenants = [
        {
          value = "string"
        }
      ]
    }
  })
}

Property values

AzureSku

Name Description Value
capacity SKU capacity. int
name SKU name. 'D13_v2'
'D14_v2'
'KC16'
'KC8'
'KS16'
'KS8'
'L16'
'L8' (required)
tier SKU tier. 'Standard' (required)

ClusterProperties

Name Description Value
trustedExternalTenants The cluster's external tenants. TrustedExternalTenant[]

Microsoft.Kusto/clusters

Name Description Value
location The geo-location where the resource lives string (required)
name The resource name string (required)
properties Class representing the Kusto cluster properties. ClusterProperties
sku The SKU of the cluster. AzureSku (required)
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.Kusto/clusters@2018-09-07-preview"

TrackedResourceTags

Name Description Value

TrustedExternalTenant

Name Description Value
value GUID representing an external tenant. string