Hi abcd1234!,
Thanks for sharing the screenshots.
As said, you will need to either select an Image Version source that matches the properties of the Image Definition or create a new Image Definition with properties that will allow that image source.
But this might be happening because acceleratedNetwork is disabled under source VM's OS disk supported capabilities. To fix that, use the command below to enable acceleratedNetwork at source VM's OS disk:
az disk update -n <source VM's os disk name> --resource-group <resource group> --accelerated-network true
If Source OS disk does not have NVMe property, we can update the property using CLI.
az resource update --ids /subscriptions/<SubID>/resourceGroups/<RGname>/providers/Microsoft.Compute/disks/<DiskName> --set properties.supportedCapabilities.diskControllerTypes=SCSI,NVMe
If you have any further queries, let me know. If the information is helpful, please click on Upvote.
Thank you.