docs/documentation/platform/pki/ca/digicert-direct.mdx
Infisical can issue OV and EV TLS certificates directly from DigiCert CertCentral using the CertCentral Services API.
- **App Connection** — the DigiCert connection you created
- **Organization** — the CertCentral organization that should appear on issued certificates
- **Product** — the CertCentral entitlement this CA will issue under
</Step>
</Steps>
```bash Create a DigiCert CA
curl --request POST \
--url https://app.infisical.com/api/v1/pki/ca/digicert \
--header 'Content-Type: application/json' \
--data '{
"name": "digicert-ov",
"status": "active",
"configuration": {
"appConnectionId": "<digicert-app-connection-id>",
"organizationId": 112236,
"productNameId": "ssl_plus"
}
}'
```
When you request a certificate through a DigiCert CertCentral CA, the request moves through these states:
| State | Description |
|---|---|
| Pending Validation | DigiCert has accepted the order. Complete domain control validation in DigiCert CertCentral. |
| Issued | Infisical polls DigiCert and downloads the certificate once validation completes. Click Trigger Validation to force an immediate check. |
| Failed | If DigiCert does not issue within 24 hours. Complete validation on CertCentral and submit a new request. |
Now that your DigiCert CA is configured, set up the infrastructure to issue certificates:
<CardGroup cols={2}> <Card title="Certificate Profiles" icon="file-certificate" href="/documentation/platform/pki/settings/profiles"> Create a profile that references your DigiCert CA. </Card> <Card title="Applications" icon="grid-2" href="/documentation/platform/pki/applications/overview"> Create an Application, attach a profile, and configure enrollment. </Card> <Card title="Enrollment Methods" icon="arrow-right-to-arc" href="/documentation/platform/pki/applications/enrollment-methods/overview"> Choose how certificates are requested — API, ACME, EST, or SCEP. </Card> <Card title="Quick Start" icon="rocket" href="/documentation/platform/pki/quick-starts/issue-first-certificate"> Issue your first certificate end-to-end. </Card> </CardGroup>