Use this data source to access information about an existing Sentinel Alert Rule.
provider "azurerm" {
features {}
}
data "azurerm_log_analytics_workspace" "example" {
name = "example"
resource_group_name = "example-resources"
}
data "azurerm_sentinel_alert_rule" "example" {
name = "existing"
log_analytics_workspace_id = data.azurerm_log_analytics_workspace.example.id
}
output "id" {
value = data.azurerm_sentinel_alert_rule.example.id
}
The following arguments are supported:
name
- (Required) The name which should be used for this Sentinel Alert Rule.
log_analytics_workspace_id
- (Required) The ID of the Log Analytics Workspace this Sentinel Alert Rule belongs to.
In addition to the Arguments listed above - the following Attributes are exported:
id
- The ID of the Sentinel Alert Rule.The timeouts
block allows you to specify timeouts for certain actions:
read
- (Defaults to 5 minutes) Used when retrieving the Sentinel Alert Rule.