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

trusted_certificate (26) Versions 3.4.0

Manages adding certificates to the OS trust store

Policyfile
Berkshelf
Knife
cookbook 'trusted_certificate', '= 3.4.0', :supermarket
cookbook 'trusted_certificate', '= 3.4.0'
knife supermarket install trusted_certificate
knife supermarket download trusted_certificate
README
Dependencies
Changelog
Quality -%

trusted_certificate cookbook

Cookbook Version
CI State
OpenCollective
OpenCollective
License

This cookbook provides a trusted_certificate resource to manage adding SSL/TLS certificates to the operating system's trust store.

Maintainers

This cookbook is maintained by the Sous Chefs. The Sous Chefs are a community of Chef cookbook maintainers working together to maintain important cookbooks. If you’d like to know more please visit sous-chefs.org or come chat with us on the Chef Community Slack in #sous-chefs.

Requirements

Platforms

  • Debian/Ubuntu
  • RHEL 6+

Chef

  • Chef 12.15+

Cookbooks

  • none

Recipes

default

Installs the ca-certificates package that provides the certificate trust mechanism.

Resources

trusted_certificate

Adds a certificate to the operating system's trust store.

properties

  • content: The contents of the cert to add. This can be specfied as inline content, a URL to a remote file, or a cookbook_file included in a wrapper cookbook.
  • certificate_name: The filename of the cert

actions

  • create
  • delete

example

Create certificate from inline content:

trusted_certificate 'my_corp' do
  action :create
  content 'THIS_WOULD_BE_THE_WHOLE_CERT_CONTENTS'
end

Download from a remote location:

trusted_certificate 'my_corp_remote' do
  action :create
  content 'http://www.example.com/my_corp_remote.crt'
end

Create cert from file included in a wrapper cookbook:

trusted_certificate 'my_corp_cert_wrapper' do
  action :create
  content 'cookbook_file://my_trusted_certs::my_corp_cert.crt'
end

Delete a certificate from the chain:

trusted_certificate 'my_corp' do
  action :delete
end

Contributors

This project exists thanks to all the people who contribute.

Backers

Thank you to all our backers!

https://opencollective.com/sous-chefs#backers

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website.

https://opencollective.com/sous-chefs/sponsor/0/website
https://opencollective.com/sous-chefs/sponsor/1/website
https://opencollective.com/sous-chefs/sponsor/2/website
https://opencollective.com/sous-chefs/sponsor/3/website
https://opencollective.com/sous-chefs/sponsor/4/website
https://opencollective.com/sous-chefs/sponsor/5/website
https://opencollective.com/sous-chefs/sponsor/6/website
https://opencollective.com/sous-chefs/sponsor/7/website
https://opencollective.com/sous-chefs/sponsor/8/website
https://opencollective.com/sous-chefs/sponsor/9/website

Dependent cookbooks

This cookbook has no specified dependencies.

Contingent cookbooks

trusted_ca Applicable Versions

trusted_certificate Cookbook CHANGELOG

This file is used to list changes made in each version of the trusted_certificate cookbook.

3.4.0 - 2021-03-18

  • Sous Chefs Adoption
  • Add InSpec tests

3.3.0 (2020-06-24)

  • Update to enable installation of certs via URL or cookbook_file in wrapper cookbook - @qubitrenegade
  • Move the cert update logic into a helper method - @tas50
  • Update and expand testing - @tas50
  • Remove the mention of the ChefSpec matcher - @tas50
  • Remove the .foodcritic file - @tas50
  • Require Chef 12.15+ - @tas50
  • Switch to Policyfile instead of Berkshelf - @collinmcneese
  • Replace Travis CI testing with GitHub Actions - @collinmcneese
  • updates trusted_certificate resource for property content - @collinmcneese
  • fixes unit test for content with new resource data - @collinmcneese
  • updates content property to be required only for create action - @collinmcneese
  • Make sure the resource loads on chef < 16 + other fixes - @tas50

3.2.0 (2018-04-06)

  • Added a new :delete action
  • Removed Chefspec matchers that are now autogenerated by Chefspec

3.1.1 (2017-06-28)

  • Avoid deprecation warning in the Chefspecs
  • Remove unnecessary required on the name property
  • Remove the converge_by that's causing converges on every run

3.1.0 (2017-05-30)

  • name_attribute -> name_property in the custom resource
  • Remove class_eval usage and require Chef 12.7+ to resolve failures on later Chef 12 releases

3.0.1 (2017-03-21)

  • Test with Local Delivery instead of Rake
  • Fix method missing errors on older Chef clients

3.0.0 (2017-02-15)

  • Require Chef 12.5+ and remove compat_resource

2.0.0 (2017-01-04)

  • Convert the LWRP to a custom resource
  • Add support for opensuse

1.0.1 (2017-01-03)

  • Remove Chef 11 compatibility in metadata
  • Fix typo in the matcher name

1.0.0 (2016-08-31)

  • Add RHEL support
  • Add Chefspec matcher
  • Add chef_version metadata
  • Change maintainer to Cookbook Team
  • Fix badge URLs
  • Document the provider in the readme
  • Add matchers to the readme
  • Add test cookbook and test the actual provider in Travis

v0.1.0

  • Initial release

No quality metric results found