-
Hi! I've been trying to spin up a new instance of PlatformPlatform in Azure using the pp CLI and everything appears to be working except for the Managed Certificates for custom domains. It seems they get stuck in Pending for several hours before failing. I made the requisite CNAME and TXT records with my DNS provider and have retried removing/adding the certificates, both through the Azure CLI and the portal, but to no avail. I believe it has something to do with the recent changes they've made concerning validation, referenced here: microsoft/azure-container-apps#1542. Most solutions I've found related to that change mention ensuring the app is publicly available, but even with the There doesn't seem to be much in the way of visibility into the action being taken while "Pending". Presumably it's just DigiCert attempting to reach the instance. I was wondering if anyone else has deployed a new instance recently and come across a similar issue and/or found a solution. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @djeastm Yes... I know. This is a problem in Azure. The PlatformPlatform AppGateway is public so that is not the problem. I have a support case running with Microsoft, who escalated it to their product team. The Actual ProblemWhen deploying via Bicep, Azure Container Apps fails to create the DigiCert validation endpoint: https://app.your-saas-product.com/.well-known/pki-validation/fileauth.txt This endpoint is only created when manually configuring through the Azure Portal. Since August 15th, DigiCert requires this endpoint - without it, certificate issuance fails. The Workaround (Manual Process)For now I have a workaround that I've confirmed with two customers. But it requires a manual step.
I have only done this once myself, but another customer of mine managed to solve it following this guide. PS: If you have any other questions, I will be more than happy to jump on a call and answer any questions you have. |
Beta Was this translation helpful? Give feedback.
-
That did it. Thanks for the help! Edit: The Cloud Infrastructure deployment does seem to be having trouble getting through the Staging/Plan step now, but I'll continue looking at that. |
Beta Was this translation helpful? Give feedback.
Hi @djeastm
Yes... I know. This is a problem in Azure. The PlatformPlatform AppGateway is public so that is not the problem.
I have a support case running with Microsoft, who escalated it to their product team.
The Actual Problem
When deploying via Bicep, Azure Container Apps fails to create the DigiCert validation endpoint:
https://app.your-saas-product.com/.well-known/pki-validation/fileauth.txt
This endpoint is only created when manually configuring through the Azure Portal. Since August 15th, DigiCert requires this endpoint - without it, certificate issuance fails.
The Workaround (Manual Process)
For now I have a workaround that I've confirmed with two customers. But it requires a man…