Skip to content

Commit

Permalink
azurerm_log_analytics_cluster size_gb now supportsall of 100, 200, 30…
Browse files Browse the repository at this point in the history
…0, 400, 500, 1000, 2000, 5000, 10000, 25000, 50000 (#27616)
  • Loading branch information
katbyte authored Oct 11, 2024
1 parent 1dd1bde commit 4bf6320
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (l LogAnalyticsClusterResource) Arguments() map[string]*schema.Schema {
}
return 100
}(),
ValidateFunc: validation.IntInSlice([]int{100, 500, 1000, 2000, 5000}),
ValidateFunc: validation.IntInSlice([]int{100, 200, 300, 400, 500, 1000, 2000, 5000, 10000, 25000, 50000}),
},

"tags": tags.Schema(),
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/log_analytics_cluster.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The following arguments are supported:

* `identity` - (Required) An `identity` block as defined below. Changing this forces a new Log Analytics Cluster to be created.

* `size_gb` - (Optional) The capacity of the Log Analytics Cluster is specified in GB/day. Possible values include `100`, `500`, `1000`, `2000` or `5000`. Defaults to `100`.
* `size_gb` - (Optional) The capacity of the Log Analytics Cluster is specified in GB/day. Possible values include `100`, `200`, `300`, `400`, `500`, `1000`, `2000`, `5000`, `10000`, `25000`, or `50000`. Defaults to `100`.

~> **NOTE:** The cluster capacity must start at 100 GB and can be set to 500, 1000, 2000 or 5000 GB/day. For more information on cluster costs, see [Dedicated clusters](https://docs.microsoft.com/en-us/azure/azure-monitor/logs/cost-logs#dedicated-clusters). In v3.x the default value is `1000` GB, in v4.0 of the provider this will default to `100` GB.

Expand Down

0 comments on commit 4bf6320

Please sign in to comment.