Hello @Jason Major,
check to list all deployments for a resource group:
az deployment group list --resource-group YNC_Eisai
To view failed operations:
az deployment operation group list --resource-group YNC_Eisai --name Microsoft.Template-20250806065339 --query "[?properties.provisioningState=='Failed']"
Go to the Activity Log in the Azure Portal for the resource group or VM to see more granular error messages and share in private message.
VM Provisioning Failures causes-
Quota limits exceeded (e.g., CPU cores, public IPs)
Incorrect VM size or region availability
Missing or misconfigured network resources (NIC, NSG, subnet)
Invalid image reference or OS disk configuration
View deployment history with Azure Resource Manager-https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/deployment-history?tabs=azure-portal
If you have any further queries, do let us know.