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_solution" {
source="./modules/azurerm/r/azurerm_log_analytics_solution"# location - (required) is a type of stringlocation=null# resource_group_name - (required) is a type of stringresource_group_name=null# solution_name - (required) is a type of stringsolution_name=null# tags - (optional) is a type of map of stringtags={}
# workspace_name - (required) is a type of stringworkspace_name=null# workspace_resource_id - (required) is a type of stringworkspace_resource_id=nullplan=[{
name =null
product =null
promotion_code =null
publisher =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_log_analytics_solution""this" {
# location - (required) is a type of stringlocation=var.location# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# solution_name - (required) is a type of stringsolution_name=var.solution_name# tags - (optional) is a type of map of stringtags=var.tags# workspace_name - (required) is a type of stringworkspace_name=var.workspace_name# workspace_resource_id - (required) is a type of stringworkspace_resource_id=var.workspace_resource_iddynamic"plan" {
for_each=var.plancontent {
# product - (required) is a type of stringproduct=plan.value["product"]
# promotion_code - (optional) is a type of stringpromotion_code=plan.value["promotion_code"]
# publisher - (required) is a type of stringpublisher=plan.value["publisher"]
}
}
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"]
}
}
}