Hi @developer-0760
from deep investigation we found The main reason you're seeing the “Hostname not eligible for App Service Managed Certificates creation” error is clearly stated in the validation failure:
[CheckARecordForHttpValidatedWebspaceASMCRequests]: Not found A record directly pointing to ip address
Even though your CNAME is correctly configured and resolving, after the recent App Service recreation, Azure’s managed certificate validation is now strictly checking for an A record that points directly to your App Service’s IP address
Recommended Solution:
- In your DNS provider, temporarily add an A record:
- Hostname: your custom domain
- Type: A
- Value: App Service IP address
- Wait 5–15 minutes for DNS propagation.
- Go back to your App Service > Custom domains, validate the domain again, then try creating the App Service Managed Certificate.
- Once the certificate is successfully issued and bound, you can safely remove the A record and keep only your original CNAME.
Also add this CAA record (required for DigiCert issuance):
- Type: CAA
- Name: @
- Value: 0 issue "digicert.com"
This A-record requirement during validation is a common gotcha after App Service recreations, even when CNAME worked fine before.
reference :
https://dori-uw-1.kuma-moon.com/en-us/azure/app-service/tutorial-secure-domain-certificate
https://dori-uw-1.kuma-moon.com/en-us/azure/app-service/configure-ssl-certificate?tabs=apex%2Crbac%2Cazure-cli
Kindly let us know if the above helps or you need further assistance on this issue.
Please "upvote" if the information helped you. This will help us and others in the community as wel