Helllo,
I've created ceertificate, but it's status: PROVISIONING for 2 hours.
```
gcloud compute ssl-certificates describe mcrt-94a7195a-0f1d-4c85-b67f-fb16fda2bf5f
creationTimestamp: '2025-02-24T03:17:40.212-08:00'
id: '7909269187352193979'
kind: compute#sslCertificate
managed:
domainStatus:
app.apis-charlieai-ml.com: FAILED_NOT_VISIBLE
domains:
- app.apis-charlieai-ml.com
status: PROVISIONING
name: mcrt-94a7195a-0f1d-4c85-b67f-fb16fda2bf5f
selfLink: https://www.googleapis.com/compute/v1/projects/charlie-ai/global/sslCertificates/mcrt-94a7195a-0f1d-...
type: MANAGED
```
Can you help me?
The FAILED_NOT_VISIBLE status indicates that the domain is not visible to the Google Cloud Certificate Authority. To resolve this issue:
A Record:
CNAME Record (if applicable):
Here is an example of how to configure the DNS records for your domain:
Use the dig command to verify the DNS configuration: dig app.apis-charlieai-ml.com
Ensure that the output shows the correct IP address.
5. Recreate the SSL Certificate
If the DNS records were incorrect and you have updated them, you might need to delete the existing SSL certificate and create a new one:
Delete the Existing SSL Certificate:
gcloud compute ssl-certificates delete mcrt-94a7195a-0f1d-4c85-b67f-fb16fda2bf5f
Crerate a new ssl certificate
gcloud compute ssl-certificates create mcrt-94a7195a-0f1d-4c85-b67f-fb16fda2bf5f \
--domains=app.apis-charlieai-ml.com
I hope this will help
DNS records are correct. IP is correct. Checked.
There are a number of possible reasons for this. Refer to the SSL certificate troubleshooting guide: https://cloud.google.com/load-balancing/docs/ssl-certificates/troubleshooting
Everything checked, everything tried, nothing helped.