Open LaurentLesle opened 7 months ago
Current documentation specifies a lower daily commitment to 100 GB per day is supported.
It is possible when using the API version '2022-10-01' to use different values for the sku (size_gb):
azurerm_log_analytics_cluster
resource "azurerm_log_analytics_cluster" "example" { name = "example-cluster" resource_group_name = azurerm_resource_group.example.name location = azurerm_resource_group.example.location size_gb = 100 identity { type = "SystemAssigned" } }
https://learn.microsoft.com/en-us/azure/azure-monitor/logs/logs-dedicated-clusters?tabs=restapi#create-a-dedicated-cluster
https://github.com/Azure/azure-rest-api-specs/blob/9158709864db10cec00c04c6544d6fddf43fcc37/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2022-10-01/Clusters.json#L530
This required an SDK upgrade, available here: https://github.com/hashicorp/go-azure-sdk/tree/main/resource-manager/operationalinsights/2022-10-01
Support for 100GB added by #26865.
Is there an existing issue for this?
Community Note
Description
Current documentation specifies a lower daily commitment to 100 GB per day is supported.
It is possible when using the API version '2022-10-01' to use different values for the sku (size_gb):
New or Affected Resource(s)/Data Source(s)
azurerm_log_analytics_cluster
Potential Terraform Configuration
References
https://learn.microsoft.com/en-us/azure/azure-monitor/logs/logs-dedicated-clusters?tabs=restapi#create-a-dedicated-cluster
https://github.com/Azure/azure-rest-api-specs/blob/9158709864db10cec00c04c6544d6fddf43fcc37/specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/stable/2022-10-01/Clusters.json#L530