DNS CAA Records: How to Restrict Which CAs Can Issue Your SSL Certificate (2026)
Imagine someone walked into a locksmith with a copy of your address and asked for a key to your house. Now imagine that was possible with SSL certificates too — any Certificate Authority could, in theory, issue a certificate for your domain without your knowledge. For years, this was an accepted risk of the CA system. DNS CAA records close that gap: they let you explicitly declare, in DNS, which CAs are allowed to issue certificates for your domain — and every publicly trusted CA is contractually required to check for one before issuing anything.
DNS Lookup Tool
Look up your CAA records to verify they restrict certificate issuance correctly.
Try It Free →What Is a CAA Record?
A CAA (Certification Authority Authorization) record is a DNS resource record, defined in RFC 8659, that specifies which Certificate Authorities are permitted to issue certificates for a domain. Since September 2017, the CA/Browser Forum's Baseline Requirements have made CAA checking mandatory for all publicly trusted CAs — a CA that ignores a CAA record and issues anyway is in violation of the Baseline Requirements and can face distrust action from browsers.
CAA Record Syntax
A CAA record has three parts: a flag, a tag, and a value.
| Tag | Purpose |
|---|---|
issue | Authorizes a CA to issue standard (non-wildcard) certificates for this domain. |
issuewild | Authorizes a CA to issue wildcard certificates. If absent, CAs fall back to the issue tag for wildcard requests too. |
iodef | An email or URL where CAs should report policy violations (e.g. a rejected issuance attempt from an unauthorized CA). |
How Do I Know If My CAA Records Are Set Up Correctly?
Query your domain's CAA records directly with dig, or use the DNS Lookup tool above for a quicker check without a terminal:
An empty result is the most common "misconfiguration" — not because it's wrong technically (no CAA record means no restriction, which is valid per the RFC), but because it means you haven't actually restricted anything. If you only ever issue certificates through one CA, an empty CAA record leaves the door open to any other CA issuing a certificate for your domain by mistake or through a compromised account elsewhere.
CAA Values for Common CAs
| Certificate Authority | CAA Value |
|---|---|
| Let's Encrypt | letsencrypt.org |
| DigiCert | digicert.com |
| Sectigo | sectigo.com |
| GlobalSign | globalsign.com |
| Google Trust Services | pki.goog |
| Amazon (ACM) | amazon.com, amazontrust.com, awstrust.com, amazonaws.com |
Restricting to a Specific Account (CA-Specific Parameters)
Some CAs support account-level restriction within the CAA record itself, so even a compromised or misused account at your authorized CA can't issue for your domain unless the account ID also matches:
Common CAA Mistakes
- Forgetting
issuewild: if you request a wildcard certificate but only have anissuerecord for a different CA than the one issuing, the CA falls back to checkingissue— but if it's absent entirely and onlyissuewildexists for another CA, wildcard issuance from your intended CA will fail. - Typos in the CA domain value:
letsencrypt.orgspelled or capitalized incorrectly is treated as "not authorized," not "assume typo and allow" — issuance will simply fail. - Setting CAA on a CDN-fronted domain without confirming the CDN's CA: if a CDN (e.g., Cloudflare) manages a certificate on your behalf, you need CAA to authorize the CDN's actual issuing CA, not just your own, or their automated renewal will fail.
- Not adding
iodef: without it, you won't be notified when a CA rejects an unauthorized issuance attempt against your domain — you lose visibility into attempted misuse.
CAA and Certificate Transparency
CAA works alongside Certificate Transparency (CT) logs as a second layer of defense. CAA is preventive — it stops unauthorized CAs from issuing in the first place. CT is detective — it gives you a public, auditable record of every certificate that was issued for your domain, so you can catch a CAA policy failure or a compromised authorized CA after the fact. Use both: a CAA record with an iodef reporting address, plus periodic monitoring of CT logs for your domain (our Certificate Search tool queries CT logs directly).
Check your CAA records right now
Look up your domain's CAA (and other DNS) records instantly with our free DNS Lookup tool.