Error:
Properties.CanonicalName is invalid. Found a duplicate certificate with memorialparktopeka.com available or in pending issued under serverFarmId /subscriptions/abf00ba8-3e6a-4046-bfbc-3f1e8a1a468b/resourceGroups/microservices-location-rg/providers/Microsoft.Web/serverfarms/nfsgi-location. Pending certificate operation id: 6013f201-8074-4e81-9246-6c7170b4aa31, timeout: 5/17/2021 3:12:21 PM.
Resolution:
If the DNS Zone is hosted on Azure, adding a DNS Record Set using the script below will resolve the issue.
$ZoneName = 'domain'
$ResourceGroupName = '...'
$Config = @()
$Config += New-AzDnsRecordConfig -CaaFlags 0 -CaaTag 'issue' -CaaValue 'digicert.com'
New-AzDnsRecordSet -Name '@' -RecordType 'CAA' -Ttl 3600 -DnsRecords ($Config) -ZoneName $ZoneName -ResourceGroupName $ResourceGroupName
Please refer to below article for more information,
https://docs.microsoft.com/en-us/azure/app-service/configure-ssl-certificate
Comments
0 comments
Please sign in to leave a comment.