Azure Web PubSub
An Azure service that provides real-time messaging for web applications using WebSockets and the publish-subscribe pattern.
83 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
after executing below arm, how can I get certificate thumbprint?
"resources": [
{
"apiVersion": "2019-08-01",
"location": "[parameters('Location')]",
"name": "[variables('certificateName')]",
"type": "Microsoft.Web/certificates",
"properties": {
"serverFarmId": "[resourceId('Microsoft.Web/serverfarms/', parameters('AppServicePlanName'))]",
"canonicalName": "[parameters('SubjectName')]",
"domainValidationMethod": "http-token"
}
}
],
Thanks for reaching here Check this document link: https://github.com/Azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.web/app-service-certificate-standard
[reference(resourceId('Microsoft.CertificateRegistration/certificateOrders', parameters('certificateOrderName'))).SignedCertificate.Thumbprint]