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_log_analytics_datasource_windows_performance_counter" {
source="./modules/azurerm/r/azurerm_log_analytics_datasource_windows_performance_counter"# counter_name - (required) is a type of stringcounter_name=null# instance_name - (required) is a type of stringinstance_name=null# interval_seconds - (required) is a type of numberinterval_seconds=null# name - (required) is a type of stringname=null# object_name - (required) is a type of stringobject_name=null# resource_group_name - (required) is a type of stringresource_group_name=null# workspace_name - (required) is a type of stringworkspace_name=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_log_analytics_datasource_windows_performance_counter""this" {
# counter_name - (required) is a type of stringcounter_name=var.counter_name# instance_name - (required) is a type of stringinstance_name=var.instance_name# interval_seconds - (required) is a type of numberinterval_seconds=var.interval_seconds# name - (required) is a type of stringname=var.name# object_name - (required) is a type of stringobject_name=var.object_name# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# workspace_name - (required) is a type of stringworkspace_name=var.workspace_namedynamic"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"]
}
}
}