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_workspace" {
source="./modules/azurerm/r/azurerm_log_analytics_workspace"# daily_quota_gb - (optional) is a type of numberdaily_quota_gb=null# internet_ingestion_enabled - (optional) is a type of boolinternet_ingestion_enabled=null# internet_query_enabled - (optional) is a type of boolinternet_query_enabled=null# location - (required) is a type of stringlocation=null# name - (required) is a type of stringname=null# reservation_capcity_in_gb_per_day - (optional) is a type of numberreservation_capcity_in_gb_per_day=null# resource_group_name - (required) is a type of stringresource_group_name=null# retention_in_days - (optional) is a type of numberretention_in_days=null# sku - (optional) is a type of stringsku=null# tags - (optional) is a type of map of stringtags={}
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_log_analytics_workspace""this" {
# daily_quota_gb - (optional) is a type of numberdaily_quota_gb=var.daily_quota_gb# internet_ingestion_enabled - (optional) is a type of boolinternet_ingestion_enabled=var.internet_ingestion_enabled# internet_query_enabled - (optional) is a type of boolinternet_query_enabled=var.internet_query_enabled# location - (required) is a type of stringlocation=var.location# name - (required) is a type of stringname=var.name# reservation_capcity_in_gb_per_day - (optional) is a type of numberreservation_capcity_in_gb_per_day=var.reservation_capcity_in_gb_per_day# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# retention_in_days - (optional) is a type of numberretention_in_days=var.retention_in_days# sku - (optional) is a type of stringsku=var.sku# tags - (optional) is a type of map of stringtags=var.tagsdynamic"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"]
}
}
}