An Azure service that enables bidirectional communication between internet of things (IoT) devices and applications.
Hi Kensei Kawamura •,
Welcome to Microsoft Q&A .Thank you for reaching out to us.
The current behavior—where the Microsoft.DeviceUpdate resource provider remains in a Registering state and instance creation consistently fails with InternalServerError—indicates that the provider has not fully completed initialization within the subscription.
In Azure, a resource provider must be fully registered before any dependent resources can be created. If the provider registration does not complete successfully, provisioning operations may fail without detailed error messages.
Please check if the following steps help -
- Verifying provider registration state -This command helps confirm whether the provider remains in Registering or transitions to Registered.
az provider show --namespace Microsoft.DeviceUpdate --query registrationState - Reviewing Azure Service Health for active advisories
- Use the Service Health dashboard to check for any ongoing service issues, planned maintenance, or advisories that may impact resource provisioning.
- Azure Service Health provides real-time updates and guidance on service-related incidents affecting subscriptions and regions.
- Retrying deployment only after provider becomes Registered Instance creation should be retried once the resource provider successfully transitions to the Registered state, as this is a prerequisite for resource creation.
The following references might be helpful , please check them out
- Resource provider registration errors - Azure Resource Manager | Azure Docs
- az provider | Microsoft Learn
- Azure Service Health documentation - Azure Service Health | Microsoft Learn
Thank you