Add multiple sites via automation
To add multiple sites to Cloudflare at once and more efficiently, you can do so via the Cloudflare API.
Adding multiple sites can be useful when you:
- Have multiple domains mapping back to a single, canonical domain (common for domains in different countries - such as
.com.au
,.co.uk
- that you want protected by Cloudflare). - Are a partner ↗, agency, or IT consultancy, and manage multiple domains on behalf of your customers.
- Are moving an existing set of sites over to Cloudflare.
Using the API will allow you to add multiple sites quickly and efficiently, especially if you are already familiar with how to change your name-servers or add a DNS record.
This tutorial assumes domains will be added using full mode.
To add multiple sites to Cloudflare via automation, you need:
- An existing Cloudflare account.
- Command line with
curl
- A Cloudflare API token with one of the following permissions:
- Zone-level
Administrator
- Zone-level
Zone: Edit
andDNS: Edit
- Account-level
Domain Administrator
- Zone-level
- To have disabled DNSSEC for each domain at your registrar (where you bought your domain name).
- Follow this tutorial to migrate an existing DNS zone without having to disable DNSSEC
Provider-specific instructions
This is not an exhaustive list of how to update DS records in other providers, but the following links may be helpful:
- Create a list of domains you want to add, each on a separate line (newline separated), stored in a file such as
domains.txt
. - Create a bash script
add-multiple-zones.sh
and add the following. Adddomains.txt
to the same directory or update its path accordingly.
- Open the command line and run:
After adding a domain, it will be in a Pending Nameserver Update
state.
jq
↗ is a command-line tool that parses and beautifies JSON outputs.
This tool is a requirement to complete any Additional options
steps in this tutorial.
Refer to jq
documentation ↗ for more information.
Cloudflare offers a quick scan that helps populate a zone’s DNS records. This scan is a best effort attempt based on a predefined list of commonly used record names and types.
This API call requires the domain ID
. This can be found in the following locations:
Using jq
with the first option above, modify your script add-multiple-zones.sh
to extract the domain ID and run a subsequent API call to quick scan DNS records.
For each domain to become active on Cloudflare, it must be activated in either Full setup or Partial setup. The following script will output a list containing the nameservers associated with each domain.
You can find your zones nameservers in the following locations:
- Modify your script
add-multiple-zones.sh
to print a CSV with data from theCreate Zone
JSON response.
ID | ZONE | NAME SERVERS |
---|---|---|
<ZONE_ID> | example.com | arya.ns.cloudflare.com , tim.ns.cloudflare.com |
- Use the values in the NAME SERVERS column to update the nameservers at the registrar of each domain.
There are limitations on the number of domains you can add at a time. If you attempt to add more than 50 domains at a time, any additional domains will be blocked until your current domains are active.
After that, you cannot have more pending sites than active sites associated with your Cloudflare account. We recommend waiting until your pending sites have been activated before adding additional domains.
If any errors were returned in this process, the domain may not be registered (or only just registered), be a subdomain, or otherwise been invalid. For more details, refer to Cannot add domain.