Azure Stream Analytics Output SQL Server
This page shows how to write Terraform and Azure Resource Manager for Stream Analytics Output SQL Server and write them securely.
azurerm_stream_analytics_output_mssql (Terraform)
The Output SQL Server in Stream Analytics can be configured in Terraform with the resource name azurerm_stream_analytics_output_mssql. The following sections describe 2 examples of how to use the resource and its parameters.
Example Usage from GitHub
resource "azurerm_stream_analytics_output_mssql" "this" {
database = var.database
name = var.name
password = var.password
resource_group_name = var.resource_group_name
server = var.server
resource "azurerm_stream_analytics_output_mssql" "this" {
database = var.database
name = var.name
password = var.password
resource_group_name = var.resource_group_name
server = var.server
Parameters
-
databaserequired - string -
idoptional computed - string -
namerequired - string -
passwordrequired - string -
resource_group_namerequired - string -
serverrequired - string -
stream_analytics_job_namerequired - string -
tablerequired - string -
userrequired - string -
timeoutssingle block
Explanation in Terraform Registry
Manages a Stream Analytics Output to Microsoft SQL Server Database.
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 SQL Server?
Azure Stream Analytics Output SQL Server 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 SQL Server?
For Terraform, the kevinhead/azurerm and niveklabs/azurerm source code examples are useful. See the Terraform Example section for further details.