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

ultradns_client (2) Versions 1.0.1

Installs/Configures ultradns_client

Policyfile
Berkshelf
Knife
cookbook 'ultradns_client', '~> 1.0.1', :supermarket
cookbook 'ultradns_client', '~> 1.0.1'
knife supermarket install ultradns_client
knife supermarket download ultradns_client
README
Dependencies
Changelog
Quality 17%

ultradns_client_cookbook

Provides ultadns_client LWRP for interaction with the UltraDNS API

Resources and Providers

ultradns_client

Actions

Action Description Default
create Create new A or CNAME record true<
update Update an existing record. Supports modification of the record value or the TTL. To modify a record name, delete the old record and create a new one false
delete Delete an existing record false

Parameters

Attribute Description Required Allowed Values Default
username Neustar API username true
password Neustar API password true
zone DNS zone to modify. The zone must already exist on the account true
record_name Record to be added / deleted / updated true
record_type Type of record to create. Cannot be used to change an A record to a CNAME false
record_value IP or other record that the entry should point to false
ttl Record time to live, specified in seconds false
connection_options Hash of connection options. Currently supports only host for overriding the default API endpoint false {'host' => 'someapiendpoint'}

Examples

Create A record using the test API endpoint

ultradns_client 'createtest' do
  username node['ultradns_client']['username']
  password node['ultradns_client']['password']
  zone 'api_test.com'
  record_name 'createtest'
  record_type 'A'
  record_value '127.0.0.1'
  ttl 500
  connection_options :host => 'test-restapi.ultradns.com'
  action :create
end

Update A Record

ultradns_client 'update-test' do
 username node['ultradns_client']['username']
 password node['ultradns_client']['password']
 zone 'api_test.com'
 record_name 'update-test'
 record_type 'A'
 ttl 200
 action :update
end

Delete CNAME Record

ultradns_client 'delete-test' do
  username node['ultradns_client']['username']
  password node['ultradns_client']['password']
  zone 'api_test.com'
  record_name 'delete-test'
  record_type 'CNAME'
  action :delete
end

Usage

Include ultradns_client::default recipe

Dependencies

Communication with the API is through ultradns-sdk gem, https://github.com/ultradns/ultradns-sdk-ruby

License and Authors

Author:: Brent Walker (brent.walker@ge.com)

Copyright [2015] [General Electric]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Dependent cookbooks

This cookbook has no specified dependencies.

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

0.1.0

Initial release of ultradns_client

Collaborator Number Metric
            

1.0.1 failed this metric

Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.

Contributing File Metric
            

1.0.1 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file

Foodcritic Metric
            

1.0.1 failed this metric

FC064: Ensure issues_url is set in metadata: ultradns_client/metadata.rb:1
FC065: Ensure source_url is set in metadata: ultradns_client/metadata.rb:1
FC066: Ensure chef_version is set in metadata: ultradns_client/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any

No Binaries Metric
            

1.0.1 passed this metric

Testing File Metric
            

1.0.1 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file

Version Tag Metric
            

1.0.1 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number