Hello, @cloudfanatic !
Azure CLI version 2.32.0 was released on January 4th, 2022 so no update is needed there. The no registered provider found error (see below for more details) looks like it is referring to your Azure Healthcare API version. You'll need to change your deployment template to include a more up to date API version.
There are a couple places where you could encounter this that depend on your workflow. I'll include some documentation examples that go into more detail below as well as a quick Bicep example. Using Bicep, if you were creating a workspace using a template you would use 2021-06-01-preview
:
https://learn.microsoft.com/en-us/azure/healthcare-apis/deploy-healthcare-apis-using-bicep
//Create a workspace
resource exampleWorkspace 'Microsoft.HealthcareApis/workspaces@2021-06-01-preview' = {
name: workspaceName
location: resourceGroup().location
}
No registered provider found error
This relates to the following error:
Code: NoRegisteredProviderFound
Message: No registered resource provider found for location {location}
and API version {api-version} for type {resource-type}.
The error message should give you suggestions for the supported locations and API versions. You can change your template to use a suggested value. Most providers are registered automatically by the Microsoft Azure portal or the command-line interface, but not all. If you haven't used a particular resource provider before, you might need to register that provider.
More resources: