Azure Stream Analytics Output Servicebus Topic
This page shows how to write Terraform and Azure Resource Manager for Stream Analytics Output Servicebus Topic and write them securely.
azurerm_stream_analytics_output_servicebus_topic (Terraform)
The Output Servicebus Topic in Stream Analytics can be configured in Terraform with the resource name azurerm_stream_analytics_output_servicebus_topic. The following sections describe 1 example of how to use the resource and its parameters.
Example Usage from GitHub
resource "azurerm_stream_analytics_output_servicebus_topic" "this" {
name = var.name
resource_group_name = var.resource_group_name
servicebus_namespace = var.servicebus_namespace
shared_access_policy_key = var.shared_access_policy_key
shared_access_policy_name = var.shared_access_policy_name
Parameters
-
idoptional computed - string -
namerequired - string -
resource_group_namerequired - string -
servicebus_namespacerequired - string -
shared_access_policy_keyrequired - string -
shared_access_policy_namerequired - string -
stream_analytics_job_namerequired - string -
topic_namerequired - string -
serializationlist block-
encodingoptional - string -
field_delimiteroptional - string -
formatoptional - string -
typerequired - string
-
-
timeoutssingle block
Explanation in Terraform Registry
Manages a Stream Analytics Output to a ServiceBus Topic.
Microsoft.StreamAnalytics/streamingjobs/outputs (Azure Resource Manager)
The streamingjobs/outputs in Microsoft.StreamAnalytics can be configured in Azure Resource Manager with the resource name Microsoft.StreamAnalytics/streamingjobs/outputs. 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 output.
propertiesrequireddatasourceoptionalserializationoptionalsizeWindowoptional - numberThe size window to constrain a Stream Analytics output to.
timeWindowoptional - stringThe time frame for filtering Stream Analytics job outputs.
typerequired - string
Frequently asked questions
What is Azure Stream Analytics Output Servicebus Topic?
Azure Stream Analytics Output Servicebus Topic 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 Output Servicebus Topic?
For Terraform, the kevinhead/azurerm source code example is useful. See the Terraform Example section for further details.