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_linked_service" {
source="./modules/azurerm/r/azurerm_log_analytics_linked_service"# linked_service_name - (optional) is a type of stringlinked_service_name=null# read_access_id - (optional) is a type of stringread_access_id=null# resource_group_name - (required) is a type of stringresource_group_name=null# resource_id - (optional) is a type of stringresource_id=null# tags - (optional) is a type of map of stringtags={}
# workspace_id - (optional) is a type of stringworkspace_id=null# workspace_name - (optional) is a type of stringworkspace_name=null# write_access_id - (optional) is a type of stringwrite_access_id=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_log_analytics_linked_service""this" {
# linked_service_name - (optional) is a type of stringlinked_service_name=var.linked_service_name# read_access_id - (optional) is a type of stringread_access_id=var.read_access_id# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# resource_id - (optional) is a type of stringresource_id=var.resource_id# tags - (optional) is a type of map of stringtags=var.tags# workspace_id - (optional) is a type of stringworkspace_id=var.workspace_id# workspace_name - (optional) is a type of stringworkspace_name=var.workspace_name# write_access_id - (optional) is a type of stringwrite_access_id=var.write_access_iddynamic"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"]
}
}
}