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
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
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
Parameters
-
date_formatrequired - string -
idoptional computed - string -
namerequired - string -
path_patternrequired - string -
resource_group_namerequired - string -
storage_account_keyrequired - string -
storage_account_namerequired - string -
storage_container_namerequired - string -
stream_analytics_job_namerequired - string -
time_formatrequired - string -
serializationlist block-
encodingoptional - string -
field_delimiteroptional - string -
typerequired - string
-
-
timeoutssingle block
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
apiVersionrequired - stringnamerequired - stringThe name of the input.
propertiesrequiredcompressionoptionaltyperequired - stringIndicates the type of compression that the input uses. Required on PUT (CreateOrReplace) requests.
partitionKeyoptional - stringpartitionKey Describes a key in the input data which is used for partitioning the input data
serializationoptional
typerequired - 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.