Azure / azure-cli

Azure Command-Line Interface
MIT License
3.97k stars 2.95k forks source link

Issue in creating an Azure Data Explorer cluster with AZ CLI #18827

Open rahulrai-in opened 3 years ago

rahulrai-in commented 3 years ago

Describe the bug

Executing the following command returns an error:

 az kusto cluster create `
--location "Central US" `
--cluster-name "<cluster name>" `
--resource-group <RG name> `
--sku name="Dev(No SLA)_Standard_D11_v2" capacity=1 tier="Basic"

Error:

Command group 'kusto' is experimental and under development. Reference and support levels: https://aka.ms/CLI_refstatus
Parameter 'Identity.type' can not be None.

Expected behavior

Kusto cluster should be created with no identity set up.

Environment summary

OS: Windows 10 AZ CLI version:

{
  "azure-cli": "2.25.0",
  "azure-cli-core": "2.25.0",
  "azure-cli-telemetry": "1.0.6",
  "extensions": {
    "kusto": "0.3.0"
  }
}
yonzhan commented 3 years ago

route to service team

astauben commented 3 years ago

Hi @rahulrai-in

This is a known issue that we are working on fixing. Until we fix the issue, please add '--type= "None"' to your command, that should unblock you from creating the cluster.

Thanks, Assaf.