Create CAA Record
create_caa_recordControl which certificate authorities can issue certificates for a domain by creating a CAA record. Overwrites existing records with the same name, so check DNS records beforehand.
Instructions
Create a CAA record (Certificate Authority Authorization) for a domain. Controls which CAs can issue certificates. WARNING: This replaces ALL existing CAA records with the same name — previous CAA records for this name will be overwritten, not merged. Incorrect CAA records can prevent SSL/TLS certificate issuance. Use list_dns_records first to check for existing records.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tag | Yes | Tag: "issue", "issuewild", or "iodef" | |
| ttl | No | TTL in seconds | |
| flag | Yes | Flag (0 = non-critical, 128 = critical) | |
| name | Yes | Record name (use "@" for root) | |
| value | Yes | CA domain or reporting URL (e.g. "letsencrypt.org") | |
| domain | Yes | The domain name |