Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

rackspace-dns (3) Versions 1.1.1

Manages DNS records and zones in Rackspace Cloud DNS

Policyfile
Berkshelf
Knife
cookbook 'rackspace-dns', '= 1.1.1', :supermarket
cookbook 'rackspace-dns', '= 1.1.1'
knife supermarket install rackspace-dns
knife supermarket download rackspace-dns
README
Dependencies
Quality 0%

chef-rackspace-dns

Description

Adds resources for managing DNS zones and records in Rackspace DNS

Requirements

A Rackspace Cloud account is required to use
this cookbook. You will need a valid username and API key to authenticate into
your account.

You can sign up for an account here.

Dependencies

The following dependencies are installed via rsdns::default.

Packages

  • libxml2-dev
  • libxslt-dev

Gems

Usage

Account Credentials

It is highly recommended you store your Rackspace Cloud authentication
credentials in an encrypted data bag. This cookbook looks for an encrypted
data bag rackspace and the cloud data bag item. The item should look like
the following.

    {
      "id": "cloud",
      "username": "your_rackspace_username",
      "apikey": "your_rackspace_api_key",
      "region": "[us|uk]"
    }

region should be set to us or uk, depending on where your account was
created. If you signed up for your Rackspace Cloud account through
rackspace.com, then you have a us account. If you signed up through
rackspace.co.uk, then you have a uk account. The default if neither is
supplied is us.

Alternatively, you can set the credentials through attributes.

    default[:rsdns][:rackspace_username] = 'your_rackspace_username'
    default[:rsdns][:rackspace_api_key] = 'your_rackspace_api_key'
    default[:rsdns][:rackspace_auth_region] = '[us|uk]'

Resources

Record

This is an example of creating an A record for the host via recipe. It assumes
that the domain for node[:domain] exists as a domain on your Rackspace Cloud
account. See the Zone resource for creating a zone via recipe.

    rsdns_record node[:fqdn] do
      domain node[:domain]
      value node[:ipaddress]
      type 'A'
      ttl 300
    end

The only required attributes are domain and value. The available attributes
are:

  • name - Defaults to the name of the resource
  • domain - Required
  • value - Required (Example: IP Address an A record should resolve to)
  • type - Default 'A'
  • ttl - Default '300' (String or Integer is fine)
  • priority - Default nil, but useful with MX and TXT records

Zone

This is an example of creating a new domain (also known as a zone) via recipe.

    rsdns_zone node[:domain] do
      email 'foo@bar.com'
      ttl 300
    end

The only required attribute is email. ttl defaults to 300.

Attributes

    default[:rsdns][:rackspace_username] = 'your_rackspace_username'
    default[:rsdns][:rackspace_api_key] = 'your_rackspace_api_key'
    default[:rsdns][:rackspace_auth_region] = '[us|uk]'

Recipes

default.rb

Installs the necessary packages and ruby gems.

Dependent cookbooks

This cookbook has no specified dependencies.

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

Foodcritic Metric
            

1.1.1 failed this metric

FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/resources/record.rb:39
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/resources/record.rb:40
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/resources/record.rb:41
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/resources/zone.rb:36
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/resources/zone.rb:37
FC001: Use strings in preference to symbols to access node attributes: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/resources/zone.rb:38
FC019: Access node attributes in a consistent manner: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/attributes/default.rb:20
FC019: Access node attributes in a consistent manner: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/attributes/default.rb:21
FC019: Access node attributes in a consistent manner: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/attributes/default.rb:22
FC019: Access node attributes in a consistent manner: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/attributes/default.rb:23
FC019: Access node attributes in a consistent manner: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/recipes/default.rb:20
FC019: Access node attributes in a consistent manner: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/recipes/default.rb:31
FC031: Cookbook without metadata file: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/metadata.rb:1
FC045: Consider setting cookbook name in metadata: /tmp/cook/9110bd344bc56c8f31c3f66c/rackspace-dns/metadata.rb:1