Forked from slayer/cloudflare-delete-all-records.sh
Created
February 27, 2021 04:47
-
-
Save tmiland/2355034283a6e882a4fe90b1d1b5c073 to your computer and use it in GitHub Desktop.
Delete all DNS records for specified zone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
[email protected] | |
KEY=11111111111111111111111111 | |
ZONE_ID=2222222222222222222222222 | |
curl -X GET https://api.cloudflare.com/client/v4/zones/${ZONE_ID}/dns_records?per_page=500 \ | |
-H "X-Auth-Email: ${EMAIL}" \ | |
-H "X-Auth-Key: ${KEY}" \ | |
-H "Content-Type: application/json" | jq .result[].id | tr -d '"' | ( | |
while read id; do | |
curl -X DELETE https://api.cloudflare.com/client/v4/zones/${ZONE_ID}/dns_records/${id} \ | |
-H "X-Auth-Email: ${EMAIL}" \ | |
-H "X-Auth-Key: ${KEY}" \ | |
-H "Content-Type: application/json" | |
done | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment