Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azurerm_kusto_cluster - Support for extended Kusto Cluster SKUs #7372

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions azurerm/internal/services/kusto/kusto_cluster_resource.go
Expand Up @@ -61,6 +61,7 @@ func resourceArmKustoCluster() *schema.Resource {
Required: true,
ValidateFunc: validation.StringInSlice([]string{
string(kusto.DevNoSLAStandardD11V2),
string(kusto.DevNoSLAStandardE2aV4),
string(kusto.StandardD11V2),
string(kusto.StandardD12V2),
string(kusto.StandardD13V2),
Expand All @@ -69,6 +70,14 @@ func resourceArmKustoCluster() *schema.Resource {
string(kusto.StandardDS13V22TBPS),
string(kusto.StandardDS14V23TBPS),
string(kusto.StandardDS14V24TBPS),
string(kusto.StandardE16asV43TBPS),
string(kusto.StandardE16asV44TBPS),
string(kusto.StandardE16aV4),
string(kusto.StandardE2aV4),
string(kusto.StandardE4aV4),
string(kusto.StandardE8asV41TBPS),
string(kusto.StandardE8asV42TBPS),
string(kusto.StandardE8aV4),
string(kusto.StandardL16s),
string(kusto.StandardL4s),
string(kusto.StandardL8s),
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/kusto_cluster.html.markdown
Expand Up @@ -56,7 +56,7 @@ The following arguments are supported:

A `sku` block supports the following:

* `name` - (Required) The name of the SKU. Valid values are: `Dev(No SLA)_Standard_D11_v2`, `Standard_D11_v2`, `Standard_D12_v2`, `Standard_D13_v2`, `Standard_D14_v2`, `Standard_DS13_v2+1TB_PS`, `Standard_DS13_v2+2TB_PS`, `Standard_DS14_v2+3TB_PS`, `Standard_DS14_v2+4TB_PS`, `Standard_L16s`, `Standard_L4s` and `Standard_L8s`
* `name` - (Required) The name of the SKU. Valid values are: `Dev(No SLA)_Standard_D11_v2`, `Dev(No SLA)_Standard_E2a_v4`, `Standard_D11_v2`, `Standard_D12_v2`, `Standard_D13_v2`, `Standard_D14_v2`, `Standard_DS13_v2+1TB_PS`, `Standard_DS13_v2+2TB_PS`, `Standard_DS14_v2+3TB_PS`, `Standard_DS14_v2+4TB_PS`, `Standard_E16as_v4+3TB_PS`, `Standard_E16as_v4+4TB_PS`, `Standard_E16a_v4`, `Standard_E2a_v4`, `Standard_E4a_v4`, `Standard_E8as_v4+1TB_PS`, `Standard_E8as_v4+2TB_PS`, `Standard_E8a_v4`, `Standard_L16s`, `Standard_L4s` and `Standard_L8s`

* `capacity` - (Required) Specifies the node count for the cluster. Boundaries depend on the sku name.

Expand Down