Hi @john john ,
It looks like you were using the wrong Azure PowerShell syntax by using 'azure' instead of 'az' at the beginning of your command to create your Service Bus
To create a Service Bus namespace using Azure PowerShell, you can use the New-AzServiceBusNamespace
cmdlet. Here's an example command:
New-AzServiceBusNamespace -ResourceGroupName <resource-group-name> -NamespaceName <namespace-name> -Location <location> -SkuName Standard
Hope that helps.
-Grace