23 lines
766 B
Bash
Executable file
23 lines
766 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
hostname="${1}"; shift || {
|
|
echo "No hostname arg to delete provided."
|
|
exit 1
|
|
}
|
|
API="https://api.netlify.com/api/v1"
|
|
TOKEN="$(pass netlify | grep -i token | tr -d ' ' | cut -d ':' -f 2)"
|
|
counter=0
|
|
curl -sL "$API/dns_zones/lyte_dev/dns_records?access_token=$TOKEN" | \
|
|
jq -r '.[] | select(.hostname=="'"$hostname"'") | .hostname+": "+.id' | \
|
|
while read -r l; do
|
|
counter=$((counter+1))
|
|
ID="$(echo $l | awk '{print $2}')"
|
|
URL="$API/dns_zones/lyte_dev/dns_records/$ID?access_token=$TOKEN"
|
|
curl -vvv -X DELETE -sL "$URL" 2>&1 | grep 'ratelimit-remaining' &
|
|
echo "counter: $counter"
|
|
jq 'del(.[] | select(.id == "'$ID'"))' /tmp/zone.json > /tmp/zone2.json
|
|
mv /tmp/zone2.json /tmp/zone.json
|
|
[ $counter -gt 450 ] && break
|
|
done
|
|
wait
|