App Service Managed Certificate - uk domains

Mike Hudgell 1 Reputation point
2021-03-03T20:32:39.433+00:00

I'm trying to use the new app service managed certificates with its new domain-root functionality (not a sub-domain) - but when I try and use a .org.uk domain (worthing-scouts.org.uk) which is the domain registered its asking for cnames and not A records.

It looks like the functionality isn't detecting domains issues in *.org.uk is a normal domain.

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
6,818 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Grmacjon-MSFT 15,441 Reputation points
    2021-03-04T00:35:01.71+00:00

    Hi @Mike Hudgell ,

    Thanks for the question. Are you trying to access app service managed certificate through the portal?

    In the meantime, can you please try using this ARM template?

    You can use this Powershell script to run ARM template

    $subscription = "SUBSCRIPTION-ID"  
    $resourceGroupName = "RESOURCE-GROUP-NAME"  
    $appServicePlanName = "APP-SERVICE-PLAN-NAME"  
    $subjectName = "DOMAIN-NAME"  
      
    Set-AzureRmContext -SubscriptionId $subscription  
      
    $appServicePlan = Get-AzureRmResource `  
        | Where-Object {$_.ResourceGroupName -eq $resourceGroupName } `  
        | Where-Object {$_.Name -eq $appServicePlanName}  
      
    New-AzureRMResourceGroupDeployment `  
        -ResourceGroupName $resourceGroupName `  
        -SubjectName $subjectName `  
        -AppServicePlanName $appServicePlanName `  
        -Location $appServicePlan.Location `  
        -TemplateFile "CreateHttpFreeCert.json"   
    

    This script will only create an App Service Managed Certificate for a custom domain that has already been added to your web app. If you run this script before adding a custom domain to the web app, the script will fail.

    Best,
    Grace


  2. Mike Hudgell 1 Reputation point
    2021-03-04T17:58:33.187+00:00

    @Grmacjon-MSFT I can confirm that the script can create the pfx certificates correctly, so looks like a bug in the azure portal. How would you like it reported?

    0 comments No comments