Azure Stream Analytics Reference Input Blob

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

azurerm_stream_analytics_reference_input_blob (Terraform)

The Reference Input Blob in Stream Analytics can be configured in Terraform with the resource name azurerm_stream_analytics_reference_input_blob. The following sections describe 2 examples of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L7
resource "azurerm_stream_analytics_reference_input_blob" "this" {
  date_format               = var.date_format
  name                      = var.name
  path_pattern              = var.path_pattern
  resource_group_name       = var.resource_group_name
  storage_account_key       = var.storage_account_key
main.tf#L7
resource "azurerm_stream_analytics_reference_input_blob" "this" {
  date_format               = var.date_format
  name                      = var.name
  path_pattern              = var.path_pattern
  resource_group_name       = var.resource_group_name
  storage_account_key       = var.storage_account_key

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 a Stream Analytics Reference Input Blob. Reference data (also known as a lookup table) is a finite data set that is static or slowly changing in nature, used to perform a lookup or to correlate with your data stream. Learn more here.

Microsoft.StreamAnalytics/streamingjobs/inputs (Azure Resource Manager)

The streamingjobs/inputs in Microsoft.StreamAnalytics can be configured in Azure Resource Manager with the resource name Microsoft.StreamAnalytics/streamingjobs/inputs. 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
  • name required - string

    The name of the input.

  • properties required
      • compression optional
          • type required - string

            Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.

      • partitionKey optional - string

        partitionKey Describes a key in the input data which is used for partitioning the input data

      • serialization optional
    • type required - string

    Frequently asked questions

    What is Azure Stream Analytics Reference Input Blob?

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

    Where can I find the example code for the Azure Stream Analytics Reference Input Blob?

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