Package Exports
- cloudflare-cli
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cloudflare-cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
cloudflare-cli
CLI for interacting with Cloudflare
Note: All commands from version 1 should work as before as they have aliases set e.g. addrecord is aliased to add
Installation
npm install -g cloudflare-cli
Setup
You can setup a yaml config file with default parameters e.g. token and email. By default cfcli will look for ".cfcli.yml" in your home directory (you can also pass in a config file with -c)
Configuration Example
If you have only one cloudflare account you can set it up as below:
defaults:
token: <cloudflare-token>
email: <you@domain.com>
domain: <default-cloudflare-domain>If you have multiple cloudflare accounts, and you can set up accounts as below:
defaults:
account: work
accounts:
work:
token: <cloudflare-token>
email: <you@domain.com>
domain: <default-cloudflare-domain>
play:
token: <cloudflare-token>
email: <you@domain.com>
domain: <default-cloudflare-domain>You can then use -u play to interact with the second cloudflare account.
Usage
NAME
cfcli - Interact with cloudflare from the command line
SYNOPSIS
cfcli [options] command [parameters]
OPTIONS:
-c --config Path to yml file with config defaults (defaults to ~/.cfcli.yml
-e --email Email of your cloudflare account
-k --token Token for your cloudflare account
-u --account Choose one of your named cloudflare accounts from .cfcli.yml
-d --domain Domain to operate on
-a --activate Activate cloudflare after creating record (for addrecord)
-f --format Format when printing records (csv or table)
-t --type Type of record (for dns record functions)
-p --priority Set priority when adding a record (MX or SRV)
-l --ttl Set ttl on add or edit (120 - 86400 seconds, or 1 for auto)
-h --help Display help
COMMANDS:
add <name> <content>
Add a DNS record. Use -a to activate cf after creation
devmode on|off
Toggle development mode on/off
disable <name> [content]
Disable cloudflare caching for given record and optionally specific value
edit <name> <content>
Edit a DNS record.
enable <name> [content]
Enable cloudflare caching for given record and optionally specific value
find <name> [content]
Find a record with given name and optionally specific value
ls
List dns records for the domain
purge [url]
Purge file at given url or all files if no url given
rm <name> [content]
Remove record with given name and optionally specific value
zones
List domains in your cloudflare accountExamples
Add a new A record (mail) and activate cloudflare (-a)
cfcli -a -t A add mail 8.8.8.8 Edit a record (mail) and set the TTL
cfcli --ttl 120 edit mail 8.8.8.8Add an SRV record (then 3 numbers are priority, weight and port respectively)
cfcli -t SRV add _sip._tcp.example.com 1 1 1 example.comRemove all records with the name test
cfcli rm testRemove record with name test and value 1.1.1.1
cfcli rm test 1.1.1.1Enable cloudflare for any records that match test
cfcli enable testEnable cloudflare for a record test with the value test.com
cfcli enable test test.comExport domain records for test.com to csv
cfcli -d test.com -f csv listrecords > test.csvPurge a single file from cache
cfcli -d test.com purge http://test.com/script.jsEnable dev mode for test.com domain
cfcli -d test.com devmode on