Azure Stream Analytics Cluster

This page shows how to write Terraform and Azure Resource Manager for Stream Analytics Cluster and write them securely.

azurerm_stream_analytics_cluster (Terraform)

The Cluster in Stream Analytics can be configured in Terraform with the resource name azurerm_stream_analytics_cluster. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

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

The following arguments are supported:

  • name - (Required) The name which should be used for this Stream Analytics Cluster. Changing this forces a new resource to be created.

  • resource_group_name - (Required) The name of the Resource Group where the Stream Analytics Cluster should exist. Changing this forces a new resource to be created.

  • location - (Required) The Azure Region where the Stream Analytics Cluster should exist. Changing this forces a new resource to be created.

  • streaming_capacity - (Required) The number of streaming units supported by the Cluster. Accepted values are multiples of 36 in the range of 36 to 216.

  • tags - (Optional) A mapping of tags which should be assigned to the Stream Analytics.

In addition to the Arguments listed above - the following Attributes are exported:

  • id - The ID of the Stream Analytics.

Explanation in Terraform Registry

Manages a Stream Analytics Cluster.

Microsoft.StreamAnalytics/clusters (Azure Resource Manager)

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

Example Usage from GitHub

An example could not be found in GitHub.

Parameters

  • apiVersion required - string
  • location optional - string

    The geo-location where the resource lives

  • name required - string

    The name of the cluster.

  • properties required
      • provisioningState optional - string
  • sku optional
      • capacity optional - integer

        Denotes the number of streaming units the cluster can support. Valid values for this property are multiples of 36 with a minimum value of 36 and maximum value of 216. Required on PUT (CreateOrUpdate) requests.

      • name optional - string

        Specifies the SKU name of the cluster. Required on PUT (CreateOrUpdate) requests.

  • tags optional - string

    Resource tags.

  • type required - string

Frequently asked questions

What is Azure Stream Analytics Cluster?

Azure Stream Analytics Cluster is a resource for Stream Analytics of Microsoft Azure. Settings can be wrote in Terraform.