» Data Source: azurerm_stream_analytics_job

Use this data source to access information about an existing Stream Analytics Job.

» Example Usage

data "azurerm_stream_analytics_job" "test" {
  name                = "example-job"
  resource_group_name = "example-resources"
}

output "job_id" {
  value = "${data.azurerm_stream_analytics_job.test.job_id}"
}

» Argument Reference

  • name - (Required) Specifies the name of the Stream Analytics Job.

  • resource_group_name - (Required) Specifies the name of the resource group the Stream Analytics Job is located in.

» Attributes Reference