It is a Ruby wrapper for the Cloudflare V4 API. It provides a light weight wrapper using RestClient::Resource
. The wrapper functionality is limited to zones and DNS records at this time, PRs welcome.
Add this line to your application's Gemfile:
gem 'cloudflare'
And then execute:
$ bundle
Or install it yourself as:
$ gem install cloudflare
Here are some basic examples. For more details, refer to the code and specs.
require 'cloudflare'
# Grab some details from somewhere:
email = ENV['CLOUDFLARE_EMAIL']
key = ENV['CLOUDFLARE_KEY']
Cloudflare.connect(key: key, email: email) do |connection|
# Get all available zones:
zones = connection.zones
# Get a specific zone:
zone = connection.zones.find_by_id("...")
zone = connection.zones.find_by_name("example.com")
# Get DNS records for a given zone:
dns_records = zone.dns_records
# Show some details of the DNS record:
dns_record = dns_records.first
puts dns_record.name
# Add a DNS record. Here we add an A record for `batman.example.com`:
zone = zones.find_by_name("example.com")
zone.dns_records.create('A', 'batman', '1.2.3.4', proxied: false)
# Get firewall rules:
all_rules = zone.firewall_rules
# Block an ip:
rule = zone.firewall_rules.set('block', '1.2.3.4', notes: "ssh dictionary attack")
end
You can read more about bearer tokens here. This allows you to limit priviledges.
require 'cloudflare'
token = 'a_generated_api_token'
Cloudflare.connect(token: token) do |connection|
# ...
end
Async do
connection = Cloudflare.connect(...)
# ... do something with connection ...
ensure
connection.close
end
We welcome contributions to this project.
- Fork it.
- Create your feature branch (
git checkout -b my-new-feature
). - Commit your changes (
git commit -am 'Add some feature'
). - Push to the branch (
git push origin my-new-feature
). - Create new Pull Request.
In order to protect users of this project, we require all contributors to comply with the Developer Certificate of Origin. This ensures that all contributions are properly licensed and attributed.
This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.
- Cloudflare::DNS::Update - A dynamic DNS updater based on this gem.
- Rubyflare - Another implementation.