cookbook 'encrypted_attributes', '= 0.2.2'
encrypted_attributes (9) Versions 0.2.2 Follow1
Installs and enables chef-encrypted-attributes gem: Chef plugin to add Node encrypted attributes support using client keys.
cookbook 'encrypted_attributes', '= 0.2.2', :supermarket
knife supermarket install encrypted_attributes
knife supermarket download encrypted_attributes
Description
Installs and enables chef-encrypted-attributes
gem: Chef plugin to add Node encrypted attributes support using client keys.
Requirements
Supported Platforms
This cookbook has been tested on the following platforms:
- Amazon Linux
- CentOS
- Debian
- Fedora
- RedHat
- Ubuntu
Please, let us know if you use it successfully on any other platform.
Required Cookbooks
Required Applications
- Ruby
1.9.3
or higher.
See also the requirements of the chef-encrypted-attributes
gem.
Attributes
<table>
<tr>
<th>Attribute</th>
<th>Description</th>
<th>Default</th>
</tr>
<tr>
<td><code>node["encrypted_attributes"]["version"]</code></td>
<td>chef-encrypted-attributes gem version to install. The latest stable version is installed by default.</td>
<td><em>calculated</em></td>
</tr>
<tr>
<td><code>node["encrypted_attributes"]["mirror"]</code></td>
<td>chef-encrypted-attributes mirror to download the gem from. For cases where you do not want to use RubyGems.</td>
<td><code>nil</code></td>
</tr>
<tr>
<td><code>node["encrypted_attributes"]["data_bag"]["name"]</code></td>
<td>chef-encrypted-attributes user keys, data bag name.</td>
<td><code>"global"</code></td>
</tr>
<tr>
<td><code>node["encrypted_attributes"]["data_bag"]["item"]</code></td>
<td>chef-encrypted-attributes user keys, data bag item name.</td>
<td><code>"chef_users"</code></td>
</tr>
<tr>
<td><code>node["dev_mode"]</code></td>
<td>If this is <code>true</code>, the <code>Chef::EncryptedAttributesHelpers</code> library will work with unencrypted attributes instead of encrypted attributes. For testing purposes.</td>
<td><em>calculated</em></td>
</tr>
</table>
Recipes
encrypted_attributes::default
Installs and loads the chef-encrypted-attributes
gem.
encrypted_attributes::users_data_bag
Configures chef-encrypted-attributes
Chef User keys reading them from a data bag. This is a workaround for the Chef Users Limitation problem.
Helper Libraries
Chef::EncryptedAttributesHelpers
This library adds some helper methods to try to cover the more common use cases.
Automatically includes the required recipes (encrypted_attributes
) and gems (chef-encrypted-attributes
), so you do not have to worry about them.
Also tries to simulate encrypted attributes creation (using unencrypted attributes instead) in some testing environments:
- With Chef Solo.
- When
node["dev_mode"]
is set totrue
.
You must explicitly include the library before using it from recipes or resources:
self.class.send(:include, Chef::EncryptedAttributesHelpers)
These are the available methods:
encrypted_attributes_enabled?
Whether encrypted attributes are enabled underneath.
encrypted_attribute_read(attr_ary)
Reads an encrypted attribute.
Parameters:
-
attr_ary
: attribute path as array. For example:["ftp", "password"]
.
Returns the attribute value unencrypted.
encrypted_attribute_read_from_node(node, attr_ary)
Reads an encrypted attribute from a remote node.
Parameters:
-
node
: Node name. -
attr_ary
: attribute path as array. For example:["ftp", "password"]
.
Returns the attribute value unencrypted.
encrypted_attribute_write(attr_ary) {}
Creates and writes an encrypted attribute.
The attribute will be written only on first run and updated on the next runs. Because of this, the attribute value has to be set as a block, and the block will be run only the first time:
unencrypted_pass = encrypted_attribute_write(["ftp", "password"]) do self.class.send(:include, Opscode::OpenSSL::Password) secure_password end
Parameters:
-
attr_ary
: attribute path as array. For example:["ftp", "password"]
.
Returns the attribute value unencrypted, that is, the value returned by the block.
encrypted_attributes_allow_clients(search)
Allows some Chef Clients to read my encrypted attributes.
Parameters:
-
search
: Search query for clients that will be allowed to decrypt the attributes. For example"admin:true"
.
encrypted_attributes_allow_nodes(search)
Allows some Chef Nodes to read my encrypted attributes.
Parameters:
-
search
: Search query for nodes that will be allowed to decrypt the attributes. For example"role:webapp"
.
encrypted_attributes_enabled
This class attribute allows you to explicitly enable or disable encrypted attributes. This attribute value is calculated by default.
Chef::EncryptedAttributesHelpers Example
Here a simple example to save a password encrypted:
self.class.send(:include, Chef::EncryptedAttributesHelpers) # Allow all admin clients and webapp nodes to read the attributes encrypted by me encrypted_attributes_allow_clients("admin:true") encrypted_attributes_allow_nodes("role:webapp") ftp_pass = encrypted_attribute_write(["myapp", "ftp_password"]) do self.class.send(:include, Opscode::OpenSSL::Password) secure_password end
You can then read the attribute as follows:
ftp_pass = encrypted_attribute_read(["myapp", "ftp_password"])
Or read it from a remote node:
self.class.send(:include, Chef::EncryptedAttributesHelpers) ftp_pass = encrypted_attribute_read_from_node("myapp.example.com", ["myapp", "ftp_password"])
Don't forget to include the encrypted_attributes
cookbook as a dependency in the metadata.
# metadata.rb [...] depends "encrypted_attributes"
Usage Examples
Including in a Cookbook Recipe
You can simply include it in a recipe:
include_recipe "encrypted_attributes"
Don't forget to include the encrypted_attributes
cookbook as a dependency in the metadata.
# metadata.rb [...] depends "encrypted_attributes"
Including in the Run List
Another alternative is to include the default recipe in your Run List:
{ "name": "ftp.onddo.com", [...] "run_list": [ [...] "recipe[encrypted_attributes]" ] }
encrypted_attributes::default Recipe Usage Example
include_recipe "encrypted_attributes" Chef::Recipe.send(:include, Opscode::OpenSSL::Password) # include the #secure_password method if Chef::EncryptedAttribute.exists?(node["myapp"]["ftp_password"]) # update with the new keys Chef::EncryptedAttribute.update(node.set["myapp"]["ftp_password"]) # read the password ftp_pass = Chef::EncryptedAttribute.load(node["myapp"]["ftp_password"]) else # create the password and save it ftp_pass = secure_password node.set["myapp"]["ftp_password"] = Chef::EncryptedAttribute.create(ftp_pass) end # use `ftp_pass` for something here ...
You can also use the Chef::EncryptedAttributesHelpers
helpers to simplify its use:
self.class.send(:include, Chef::EncryptedAttributesHelpers) ftp_pass = encrypted_attribute_write(["myapp", "ftp_password"]) do self.class.send(:include, Opscode::OpenSSL::Password) secure_password end
Note: This example requires the openssl cookbook.
See the chef-encrypted-attributes
gem Usage section for more examples.
encrypted_attributes::users_data_bag Recipe Usage Example
This recipe should be called before using the encrypted attributes. It sets the Chef::Config[:encrypted_attributes][:keys]
option reading the keys from a data bag.
Before using this recipe, you must create the required data bag:
$ knife data bag create global_data chef_users
You should create a data bag item with the following format:
{ "id": "chef_users", "bob": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFA...", "alice": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFA..." }
The keys can be set in array of strings format if you prefer:
{ "id": "chef_users", "bob": [ "-----BEGIN PUBLIC KEY-----", "MIIBIjANBgkqhkiG9w0BAQEFA...", ... ], "alice": [ "-----BEGIN PUBLIC KEY-----", "MIIBIjANBgkqhkiG9w0BAQEFA...", ... ] }
You can retrieve user public keys with knife user show USER -a public_key -f json
.
Then, you can use this data bag to configure the Chef::Config[:encrypted_attributes][:keys]
chef-encrypted-attributes
configuration only by calling the recipe:
node.default["encrypted_attributes"]["data_bag"]["name"] = "global_data" include_recipe "encrypted_attributes::users_data_bag" # if Chef::EncryptedAttribute.exist?(...) # Chef::EncryptedAttribute.update(...) # else # node.set[...][...] = Chef::EncryptedAttribute.create(...) # ...
Note: This data bag does not need to be encrypted, because it only stores public keys.
Testing
See TESTING.md.
Contributing
Please do not hesitate to open an issue with any questions or problems.
See CONTRIBUTING.md.
TODO
See TODO.md.
License and Author
Author: | Xabier de Zuazo (xabier@onddo.com) |
Copyright: | Copyright (c) 2014, Onddo Labs, SL. (www.onddo.com) |
License: | Apache License, Version 2.0 |
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.
encrypted_attributes CHANGELOG
This file is used to list changes made in each version of the encrypted_attributes
cookbook.
0.2.2 (2014-10-02)
- Added platform support documentation
-
kitchen.yml
file updated - Rakefile: rubocop enabled
- Gemfile:
- Replaced vagrant by vagrant-wrapper
- Added vagrant-wrapper version with pessimistic operator
- Berkshelf updated to 3.1
- Guardfile added
- TODO: use checkboxes
0.2.1 (2014-08-28)
- EncryptedAttributesHelpers bugfix: avoid
#node.save
on chef-solo - EncryptedAttributesHelpers: some code duplication removed
- README: added gemnasium and codeclimate badges
0.2.0 (2014-08-26)
-
encrypted_attributes_test::default
:node#save
unless chef-solo - Gemfile:
- RSpec
~> 2.14.0
to avoiduninitialized constant RSpec::Matchers::BuiltIn::RaiseError::MatchAliases
error - Updates: ChefSpec
4
and foodcritic4
- Added chef-encrypted-attributes gem for unit tests
- Gemfile clean up
- RSpec
- README:
- README file split in multiple files
- Replace community links by Supermarket links
- Fixed
::users_data_bag
example using#exist?
instead of#exists_on_node?
- Added a link to
chef-encrypted-attributes
gem requirements - Multiple small fixes and improvements
-
::default
: avoid gem install error when no version is specified - Install
gcc
dependency (build-essential
cookbook) - Added
Chef::EncryptedAttributesHelpers
helper library- Added
EncryptedAttributesHelpers
unit tests
- Added
- Added RuboCop checking, all ofenses fixed
- TODO: added verify gem task
- test/kitchen directory removed
0.1.0 (2014-05-22)
- Initial release of
encrypted_attributes
Foodcritic Metric
0.2.2 passed this metric
0.2.2 passed this metric