You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"azurerm_monitor_scheduled_query_rules_log" {
source="./modules/azurerm/r/azurerm_monitor_scheduled_query_rules_log"# authorized_resource_ids - (optional) is a type of set of stringauthorized_resource_ids=[]
# data_source_id - (required) is a type of stringdata_source_id=null# description - (optional) is a type of stringdescription=null# enabled - (optional) is a type of boolenabled=null# location - (required) is a type of stringlocation=null# name - (required) is a type of stringname=null# resource_group_name - (required) is a type of stringresource_group_name=null# tags - (optional) is a type of map of stringtags={}
criteria=[{
dimension = [{
name =null
operator =null
values = []
}]
metric_name =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_monitor_scheduled_query_rules_log""this" {
# authorized_resource_ids - (optional) is a type of set of stringauthorized_resource_ids=var.authorized_resource_ids# data_source_id - (required) is a type of stringdata_source_id=var.data_source_id# description - (optional) is a type of stringdescription=var.description# enabled - (optional) is a type of boolenabled=var.enabled# location - (required) is a type of stringlocation=var.location# name - (required) is a type of stringname=var.name# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# tags - (optional) is a type of map of stringtags=var.tagsdynamic"criteria" {
for_each=var.criteriacontent {
# metric_name - (required) is a type of stringmetric_name=criteria.value["metric_name"]
dynamic"dimension" {
for_each=criteria.value.dimensioncontent {
# name - (required) is a type of stringname=dimension.value["name"]
# operator - (optional) is a type of stringoperator=dimension.value["operator"]
# values - (required) is a type of list of stringvalues=dimension.value["values"]
}
}
}
}
dynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# read - (optional) is a type of stringread=timeouts.value["read"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}