Secrets

[edit on GitHub]

Workflow is a legacy feature for Chef Automate, which was designed for managing changes to both infrastructure and application code, giving your operations and development teams a common platform for developing, testing, and deploying cookbooks, applications, and more.

Warning

Workflow is available in Chef Automate for existing users. If you are not already using Workflow, but are interested in the solution it offers, please contact your sales or success representative for support with continuous integration pipelines.

This topic describes how and why to use secrets in a build-cookbook:

  • This code is used in the build-cookbook
  • Secrets are managed at the project, organization and/or enterprise level
  • There are two mechanisms to manage secrets in Chef Automate:
    • Using an encrypted data bag
    • Using chef vaults

For more information on security, see How to be a Secure Chef.

Using Encrypted Data Bags

This section describes how to use encrypted data bag items in Chef Automate.

Create an Encrypted Data Bag

Create an encrypted data bag item that is nested inside the delivery-secrets data bag. Give the encrypted data bag item a name following the pattern:

<ENT>-<ORG>-<PROJECT>

For example, if the project is in the chef enterprise and is in the ORG organization with a name of chef-web-www, the encrypted data bag item would have the following name:

chef-ORG-chef-web-www

The encrypted data bag item should use the same encrypted data bag private key that is distributed with the build nodes.

If the project item does not exist, delivery-sugar will try to load the secrets from the project’s parent organization. It will look for an item called:

chef-ORG

This is useful if you would like to share secrets across projects within the same organization.

Use an Encrypted Data Bag

To use an encrypted data bag item, do the following:

  1. Ensure that metadata.rb for the build-cookbook shows that it depends on the delivery-sugar cookbook

  2. Update the Berksfile to point to GitHub for the cookbook. The line in your Berksfile should be similar to:

    cookbook 'delivery-sugar', github: 'chef-cookbooks/delivery-sugar'
    

From there, begin using the secrets by calling the get_project_secrets method. For example:

if push_repo_to_github?
  secrets = get_project_secrets
  github_repo = node['delivery']['config']['delivery-truck']['publish']['github']

  delivery_github github_repo do
    deploy_key secrets['github']
    branch node['delivery']['change']['pipeline']
    remote_url "[email protected]:#{github_repo}.git"
    repo_path node['delivery']['workspace']['repo']
    cache_path node['delivery']['workspace']['cache']
    action :push
  end

This example is part of the publish.rb recipe in the delivery-truck cookbook.

Using a Chef Vault

This section describes how to use Chef vault in Chef Automate.

Create a Chef Vault

In order to use Chef vaults you must follow hierarchical naming standard for your Chef vaults under the workflow-vaults data bag:

<ENT>
<ENT>-<ORG>
<ENT>-<ORG>-<PROJECT>

For example, if the chef enterprise has a cookbooks organization with a mysql project, it would have the naming schema:

chef
chef-cookbook
chef-cookbook-mysql

During the creation of a Chef vault, the data in these vaults are merged into a single Ruby hash. Any duplicate key names will be merged as follows:

  • <ENT>-<ORG>-<PROJECT> will overwrite <ENT>-<ORG> and <ENT>.
  • <ENT>-<ORG> will overwrite <ENT>.

Using Secrets in a Chef Vault

To access your secret data from the vault items, ensure that metadata.rb for the build-cookbook shows that it depends on the delivery-sugar cookbook. From there, begin using the secrets by calling the get_chef_vault_data method.

For example:

vault = get_workflow_vault_data
puts vault['my_key']

© Chef Software, Inc.
Licensed under the Creative Commons Attribution 3.0 Unported License.
The Chef™ Mark and Chef Logo are either registered trademarks/service marks or trademarks/servicemarks of Chef, in the United States and other countries and are used with Chef Inc's permission.
We are not affiliated with, endorsed or sponsored by Chef Inc.
https://docs.chef.io/automate/delivery_manage_secrets/