Home > Software engineering >  Generate the SAS key for the Azure IoT Central using PowerShell
Generate the SAS key for the Azure IoT Central using PowerShell

Time:06-15

I tried the below code to generate the SAS key for the Azure IoT Central.

az iot central device compute-device-key --pk {primaryKey} --device-id {deviceid}

But it gives the below error.

enter image description here

Please let me know how to generate the SAS key for the Azure IoT Central using PowerShell

CodePudding user response:

You need to update your azure-iot extension for Azure CLI. You might also need to update Azure CLI itself.

az extension update --name azure-iot

https://github.com/Azure/azure-iot-cli-extension#installation

  • Related