Flares is a CloudFlare DNS backup tool, it dumps your DNS table to the screen or exports it as BIND formatted zone files.
# Fetch your CloudFlare API token from here:
# https://dash.cloudflare.com/profile/api-tokens
# -> Create Token
# -> Edit zone DNS
# -> Permission: read
# -> Zone resources: Include -> All zones
$ export CF_API_TOKEN="KClp4y8BgD2LQiz2..."
$ docker run -it --rm \
-e CF_API_TOKEN="$CF_API_TOKEN" \
lfaoro/flares domain1.tld domain2.tld
brew install lfaoro/tap/flares
curl https://raw.githubusercontent.com/lfaoro/flares/master/install.sh | bash
Go installer: https://golang.org/dl/
go get -u github.com/lfaoro/flares
make install
flares -h
make test
$ make install
$ flares -h
$ flares domain1.tld
;;
;; Domain: domain1.tld
;; Exported: 2019-06-03 06:31:29
...continued
$ flares --export domain1.tld domain2.tld
BIND table for domain1.tld successfully exported
BIND table for domain2.tld successfully exported
$ ls
domain1.tld domain2.tld
- Copy .gitlab-ci.yml inside your repo
- Use the pipeline schedules feature
- Each run of the task will generate a DNS backup stored as a downloadable artifact
Any help and suggestions are very welcome and appreciated. Start by opening an issue.
- Fork the project
- Create your feature branch
git checkout -b my-new-feature
- Commit your changes
git commit -am 'Add my feature'
- Push to the branch
git push origin my-new-feature
- Create a new pull request against the master branch