chef-conceal 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +22 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +16 -0
- data/Rakefile +2 -0
- data/chef-conceal.gemspec +27 -0
- data/cookbook/.gitignore +20 -0
- data/cookbook/.kitchen.yml +22 -0
- data/cookbook/Berksfile +3 -0
- data/cookbook/CHANGELOG.md +5 -0
- data/cookbook/Gemfile +18 -0
- data/cookbook/LICENSE +3 -0
- data/cookbook/README.md +58 -0
- data/cookbook/Thorfile +12 -0
- data/cookbook/Vagrantfile +88 -0
- data/cookbook/chefignore +94 -0
- data/cookbook/metadata.rb +9 -0
- data/cookbook/recipes/default.rb +9 -0
- data/cookbook/test/encrypted_data_bag_secret +1 -0
- data/lib/chef/conceal.rb +21 -0
- data/lib/chef/conceal/version.rb +5 -0
- metadata +109 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 992c2724709c43673c564439429a69a8deb6fa8a
|
4
|
+
data.tar.gz: f584c566f6f69444d76e1c8bc9f526f8a56c4de6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 969f03c578f713317441b343d9e984cef53755eea150e65c985782a25c0a5173b112bab615defabebe8632aafca923ace49e64ea863851ce0b4dd79aa4fc4ede
|
7
|
+
data.tar.gz: 99dda118883ee749d914aab333bf85c9f6dd503c269f116d1b87cb93d92af1611f587cef1e56b539e14c380dc848ad1b3f2ef4387ef51fa87aecb616feba4f52
|
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
18
|
+
*.bundle
|
19
|
+
*.so
|
20
|
+
*.o
|
21
|
+
*.a
|
22
|
+
mkmf.log
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Ben Scott
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# Chef::Conceal
|
2
|
+
|
3
|
+
A gem and chef recipe that includes a helper method to make it easier to work with encrypted data in cookbooks.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your cookbooks's Berksfile:
|
8
|
+
|
9
|
+
cookbook 'chef-conceal'
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
include_recipe 'chef-conceal::default'
|
15
|
+
decrypt(node[:my_app][:database][:password])
|
16
|
+
```
|
data/Rakefile
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'chef/conceal/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'chef-conceal'
|
8
|
+
spec.version = Chef::Conceal::VERSION
|
9
|
+
spec.authors = ['Ben Scott']
|
10
|
+
spec.email = ['gamepoet@gmail.com']
|
11
|
+
spec.summary = 'Adds a helper method to chef make decryption easier'
|
12
|
+
spec.description = 'Adds the decrypt helper method to the chef DSL to allow the use of encrypted attributes.'
|
13
|
+
spec.homepage = 'https://github.com/gamepoet/chef-conceal'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
|
21
|
+
spec.required_ruby_version = '>= 1.9.3'
|
22
|
+
|
23
|
+
spec.add_dependency 'conceal', '~> 0.1'
|
24
|
+
|
25
|
+
spec.add_development_dependency 'bundler', '~> 1.6'
|
26
|
+
spec.add_development_dependency 'rake', '>= 0.8.7'
|
27
|
+
end
|
data/cookbook/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
driver:
|
3
|
+
name: vagrant
|
4
|
+
synced_folders:
|
5
|
+
- ["<%= File.expand_path('../../pkg', __FILE__) %>", '/pkg/chef-conceal']
|
6
|
+
|
7
|
+
provisioner:
|
8
|
+
name: chef_zero
|
9
|
+
|
10
|
+
platforms:
|
11
|
+
- name: ubuntu-12.04
|
12
|
+
|
13
|
+
suites:
|
14
|
+
- name: default
|
15
|
+
encrypted_data_bag_secret_key_path: test/encrypted_data_bag_secret
|
16
|
+
run_list:
|
17
|
+
- recipe[chef-conceal]
|
18
|
+
attributes:
|
19
|
+
chef-conceal:
|
20
|
+
_local_deploy: true
|
21
|
+
test:
|
22
|
+
password: 1:aes-256-cbc:7OEC+eudCge8z4cacPHPdg==:MWY5NWNmOTRmNmRhOWQ5NWE4MTRhNzM5Mzk4Mzg0ZTRhN2U1ZmIwNWM4ZWVlNDZlOTc2MmFiMGQwNDhhZDg5OTQ0YTJjZTRjZjVlOTY5ZWYzODljZmNlMTE2ZDBmMTMxNzI1ZTJiM2NkNTI5ZmFjMDA4MDhkZGI5NWU3YWZmNzgyMzdjNGYxMDQyNmQ1Y2ViZWRlMjY4YTc1ZTQzOGE4NzQ2ODUyZGUwOTY5YzExODY4OGY0YTg3MGFjNzc3ZmVlMzRiMTgyZGU0YjhiZDk0YmQwNjgyYTZmZGU2YTc1ZmEyYjJlYmE3ZjNlZjUzNWY5NjZlOGYyYmQ4YjY1YmEzYQ==:wjvtsF9WxPyzNYTi0cj19xF5UTe91TEmk2T1BAFEsKs=:+gZ0hSVyB2ZJI66vRzifMsy7fFGD1gnF6DE8otLVQNPA54cmeTrNHAWq/OYBi1mV
|
data/cookbook/Berksfile
ADDED
data/cookbook/Gemfile
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
gem 'berkshelf'
|
4
|
+
|
5
|
+
# Uncomment these lines if you want to live on the Edge:
|
6
|
+
#
|
7
|
+
# group :development do
|
8
|
+
# gem "berkshelf", github: "berkshelf/berkshelf"
|
9
|
+
# gem "vagrant", github: "mitchellh/vagrant", tag: "v1.5.2"
|
10
|
+
# end
|
11
|
+
#
|
12
|
+
# group :plugins do
|
13
|
+
# gem "vagrant-berkshelf", github: "berkshelf/vagrant-berkshelf"
|
14
|
+
# gem "vagrant-omnibus", github: "schisamo/vagrant-omnibus"
|
15
|
+
# end
|
16
|
+
|
17
|
+
gem 'test-kitchen'
|
18
|
+
gem 'kitchen-vagrant'
|
data/cookbook/LICENSE
ADDED
data/cookbook/README.md
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
# chef-conceal
|
2
|
+
|
3
|
+
Chef-conceal is a gem and chef recipe that includes a helpful DSL method to decrypt attributes with encrypted content using the encrypted_data_bag_secret file as the key.
|
4
|
+
|
5
|
+
## Supported Platforms
|
6
|
+
|
7
|
+
* Ubuntu
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add `chef-conceal` to your `Berksfile`:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
cookbook 'chef-conceal'
|
15
|
+
```
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
In order to use chef-conceal in your recipes, you'll first need to include it:
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
include_recipe 'chef-conceal'
|
23
|
+
```
|
24
|
+
|
25
|
+
This will extend the recipe, resource, and provider DSLs with a `decrypt` convenience method.
|
26
|
+
|
27
|
+
## Encrypting plaintext
|
28
|
+
|
29
|
+
Use the `conceal` gem (https://github.com/gamepoet/conceal) to encrypt your plaintext into an encoded string. Generating a new password and putting it in the clipboard can be as easy as:
|
30
|
+
|
31
|
+
```
|
32
|
+
$ ruby -rsecurerandom -e 'print SecureRandom.urlsafe_base64(32)' | conceal encrypt ~/.chef/encrypted_data_bag_secret | pbcopy
|
33
|
+
```
|
34
|
+
|
35
|
+
## Examples
|
36
|
+
|
37
|
+
Given a chef environment
|
38
|
+
|
39
|
+
```
|
40
|
+
$ knife environment show chef_conceal_example
|
41
|
+
chef_type: environment
|
42
|
+
default_attributes:
|
43
|
+
my_password: '1:aes-256-cbc:toekea56oRvQG1KpJNo2tw==:NjI2MjFmNjliODk4ZDM0YjJmNTQzNzdhMDdlMTBjZjhhMTUyZDQ0NTkyNjVlYjY1ODM4OTk4YmI0NDA0MmFlMDAzNWE4MDYwNjdmMDA3MTAxZWQ1NjBjZGNjMGYxNGNjYTM2YzMzYWIzYzYyNTFjNGYxZWQzNGFkYjkzZTgyN2M3YzBjY2JhNDUzNWVjYjkwY2FmODEzNGJhNWRkZmNmZGI2ZTM0NWI0MzUzMGZhODY1OGIxNjU5NjU0N2JiMDg1NzMxNWEzMmMxYWRiNzBjNWZkZWJhZDFhYzVhMGM4NzllYTQyNjViODVlOWMwYTIxZjM1OGYzZWJkMTBmY2M0Zg==:oh8bn5krZvMKiIzYt5LFEvEZMZt3sDS2Q4jL97Vty0g=:rnaFQ4su+/tSjtondhXKbSlbmbmLSIndPaBA++2kMgw='
|
44
|
+
json_class: Chef::Environment
|
45
|
+
name: chef_conceal_example
|
46
|
+
```
|
47
|
+
|
48
|
+
You could then write a recipe that references the decrypted content of the attribute with the `decrypt` function which will automatically use your `encrypted_data_bag_secret` as the key.
|
49
|
+
|
50
|
+
```ruby
|
51
|
+
include_recipe 'chef-conceal'
|
52
|
+
|
53
|
+
log decrypt(node[:my_password])
|
54
|
+
```
|
55
|
+
|
56
|
+
## Authors
|
57
|
+
|
58
|
+
* Ben Scott (<gamepoet@gmail.com>)
|
data/cookbook/Thorfile
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'bundler'
|
4
|
+
require 'bundler/setup'
|
5
|
+
require 'berkshelf/thor'
|
6
|
+
|
7
|
+
begin
|
8
|
+
require 'kitchen/thor_tasks'
|
9
|
+
Kitchen::ThorTasks.new
|
10
|
+
rescue LoadError
|
11
|
+
puts ">>>>> Kitchen gem not loaded, omitting tasks" unless ENV['CI']
|
12
|
+
end
|
@@ -0,0 +1,88 @@
|
|
1
|
+
# -*- mode: ruby -*-
|
2
|
+
# vi: set ft=ruby :
|
3
|
+
|
4
|
+
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
5
|
+
VAGRANTFILE_API_VERSION = "2"
|
6
|
+
|
7
|
+
Vagrant.require_version ">= 1.5.0"
|
8
|
+
|
9
|
+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
10
|
+
# All Vagrant configuration is done here. The most common configuration
|
11
|
+
# options are documented and commented below. For a complete reference,
|
12
|
+
# please see the online documentation at vagrantup.com.
|
13
|
+
|
14
|
+
config.vm.hostname = "chef-conceal-berkshelf"
|
15
|
+
|
16
|
+
# Set the version of chef to install using the vagrant-omnibus plugin
|
17
|
+
config.omnibus.chef_version = :latest
|
18
|
+
|
19
|
+
# Every Vagrant virtual environment requires a box to build off of.
|
20
|
+
# If this value is a shorthand to a box in Vagrant Cloud then
|
21
|
+
# config.vm.box_url doesn't need to be specified.
|
22
|
+
config.vm.box = "chef/ubuntu-14.04"
|
23
|
+
|
24
|
+
# The url from where the 'config.vm.box' box will be fetched if it
|
25
|
+
# is not a Vagrant Cloud box and if it doesn't already exist on the
|
26
|
+
# user's system.
|
27
|
+
# config.vm.box_url = "https://vagrantcloud.com/chef/ubuntu-14.04/version/1/provider/virtualbox.box"
|
28
|
+
|
29
|
+
# Assign this VM to a host-only network IP, allowing you to access it
|
30
|
+
# via the IP. Host-only networks can talk to the host machine as well as
|
31
|
+
# any other machines on the same network, but cannot be accessed (through this
|
32
|
+
# network interface) by any external networks.
|
33
|
+
config.vm.network :private_network, type: "dhcp"
|
34
|
+
|
35
|
+
# Create a forwarded port mapping which allows access to a specific port
|
36
|
+
# within the machine from a port on the host machine. In the example below,
|
37
|
+
# accessing "localhost:8080" will access port 80 on the guest machine.
|
38
|
+
|
39
|
+
# Share an additional folder to the guest VM. The first argument is
|
40
|
+
# the path on the host to the actual folder. The second argument is
|
41
|
+
# the path on the guest to mount the folder. And the optional third
|
42
|
+
# argument is a set of non-required options.
|
43
|
+
# config.vm.synced_folder "../data", "/vagrant_data"
|
44
|
+
|
45
|
+
# Provider-specific configuration so you can fine-tune various
|
46
|
+
# backing providers for Vagrant. These expose provider-specific options.
|
47
|
+
# Example for VirtualBox:
|
48
|
+
#
|
49
|
+
# config.vm.provider :virtualbox do |vb|
|
50
|
+
# # Don't boot with headless mode
|
51
|
+
# vb.gui = true
|
52
|
+
#
|
53
|
+
# # Use VBoxManage to customize the VM. For example to change memory:
|
54
|
+
# vb.customize ["modifyvm", :id, "--memory", "1024"]
|
55
|
+
# end
|
56
|
+
#
|
57
|
+
# View the documentation for the provider you're using for more
|
58
|
+
# information on available options.
|
59
|
+
|
60
|
+
# The path to the Berksfile to use with Vagrant Berkshelf
|
61
|
+
# config.berkshelf.berksfile_path = "./Berksfile"
|
62
|
+
|
63
|
+
# Enabling the Berkshelf plugin. To enable this globally, add this configuration
|
64
|
+
# option to your ~/.vagrant.d/Vagrantfile file
|
65
|
+
config.berkshelf.enabled = true
|
66
|
+
|
67
|
+
# An array of symbols representing groups of cookbook described in the Vagrantfile
|
68
|
+
# to exclusively install and copy to Vagrant's shelf.
|
69
|
+
# config.berkshelf.only = []
|
70
|
+
|
71
|
+
# An array of symbols representing groups of cookbook described in the Vagrantfile
|
72
|
+
# to skip installing and copying to Vagrant's shelf.
|
73
|
+
# config.berkshelf.except = []
|
74
|
+
|
75
|
+
config.vm.provision :chef_solo do |chef|
|
76
|
+
chef.json = {
|
77
|
+
mysql: {
|
78
|
+
server_root_password: 'rootpass',
|
79
|
+
server_debian_password: 'debpass',
|
80
|
+
server_repl_password: 'replpass'
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
chef.run_list = [
|
85
|
+
"recipe[chef-conceal::default]"
|
86
|
+
]
|
87
|
+
end
|
88
|
+
end
|
data/cookbook/chefignore
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
# Put files/directories that should be ignored in this file when uploading
|
2
|
+
# or sharing to the community site.
|
3
|
+
# Lines that start with '# ' are comments.
|
4
|
+
|
5
|
+
# OS generated files #
|
6
|
+
######################
|
7
|
+
.DS_Store
|
8
|
+
Icon?
|
9
|
+
nohup.out
|
10
|
+
ehthumbs.db
|
11
|
+
Thumbs.db
|
12
|
+
|
13
|
+
# SASS #
|
14
|
+
########
|
15
|
+
.sass-cache
|
16
|
+
|
17
|
+
# EDITORS #
|
18
|
+
###########
|
19
|
+
\#*
|
20
|
+
.#*
|
21
|
+
*~
|
22
|
+
*.sw[a-z]
|
23
|
+
*.bak
|
24
|
+
REVISION
|
25
|
+
TAGS*
|
26
|
+
tmtags
|
27
|
+
*_flymake.*
|
28
|
+
*_flymake
|
29
|
+
*.tmproj
|
30
|
+
.project
|
31
|
+
.settings
|
32
|
+
mkmf.log
|
33
|
+
|
34
|
+
## COMPILED ##
|
35
|
+
##############
|
36
|
+
a.out
|
37
|
+
*.o
|
38
|
+
*.pyc
|
39
|
+
*.so
|
40
|
+
*.com
|
41
|
+
*.class
|
42
|
+
*.dll
|
43
|
+
*.exe
|
44
|
+
*/rdoc/
|
45
|
+
|
46
|
+
# Testing #
|
47
|
+
###########
|
48
|
+
.watchr
|
49
|
+
.rspec
|
50
|
+
spec/*
|
51
|
+
spec/fixtures/*
|
52
|
+
test/*
|
53
|
+
features/*
|
54
|
+
Guardfile
|
55
|
+
Procfile
|
56
|
+
|
57
|
+
# SCM #
|
58
|
+
#######
|
59
|
+
.git
|
60
|
+
*/.git
|
61
|
+
.gitignore
|
62
|
+
.gitmodules
|
63
|
+
.gitconfig
|
64
|
+
.gitattributes
|
65
|
+
.svn
|
66
|
+
*/.bzr/*
|
67
|
+
*/.hg/*
|
68
|
+
*/.svn/*
|
69
|
+
|
70
|
+
# Berkshelf #
|
71
|
+
#############
|
72
|
+
cookbooks/*
|
73
|
+
tmp
|
74
|
+
|
75
|
+
# Cookbooks #
|
76
|
+
#############
|
77
|
+
CONTRIBUTING
|
78
|
+
CHANGELOG*
|
79
|
+
|
80
|
+
# Strainer #
|
81
|
+
############
|
82
|
+
Colanderfile
|
83
|
+
Strainerfile
|
84
|
+
.colander
|
85
|
+
.strainer
|
86
|
+
|
87
|
+
# Vagrant #
|
88
|
+
###########
|
89
|
+
.vagrant
|
90
|
+
Vagrantfile
|
91
|
+
|
92
|
+
# Travis #
|
93
|
+
##########
|
94
|
+
.travis.yml
|
@@ -0,0 +1,9 @@
|
|
1
|
+
name 'chef-conceal'
|
2
|
+
maintainer 'Ben Scott'
|
3
|
+
maintainer_email 'gamepoet@gmail.com'
|
4
|
+
license 'MIT'
|
5
|
+
description 'Adds a decrypt function so you can store secrets in attributes.'
|
6
|
+
long_description 'Adds a DSL function to let you decrypt attribute values encrypted with the conceal gem.'
|
7
|
+
version IO.read(File.expand_path('../../lib/chef/conceal/version.rb', __FILE__)).sub(/\A.*VERSION\s*=\s*['"]([^'"]+)['"].*\z/m, '\1')
|
8
|
+
|
9
|
+
supports 'ubuntu'
|
@@ -0,0 +1,9 @@
|
|
1
|
+
chef_gem 'chef-conceal' do
|
2
|
+
version run_context.cookbook_collection['chef-conceal'].version
|
3
|
+
if node[:'chef-conceal'][:_local_deploy]
|
4
|
+
source "/pkg/chef-conceal/chef-conceal-#{run_context.cookbook_collection['chef-conceal'].version}.gem"
|
5
|
+
end
|
6
|
+
action :nothing
|
7
|
+
end.run_action(:install)
|
8
|
+
|
9
|
+
require 'chef/conceal'
|
@@ -0,0 +1 @@
|
|
1
|
+
TXTBeyB5gD4D3lTv5TJYmQ1gzgik2HZPFksJjDE+QLnhaMrJntOzfip20r9ddb0fN/dK9h59iVVYMBVR10JY71Tyuz21oj6kvpJFlxJqxjk1VZwR7J56/A5ETCBxtv07Ql3X/69BkzlVvSZ9kIoT/S0zyW5t4NsFlm9UczwYCjb5w4B8MIYfrtP9DAtK16Xc4F113hLWM5H6CvZFoesSJnNjjoMR8rE7Yox5OB8DFZlfP9Nu20reBr3WoX7eKwY8rQulMMQpMf/n+dlHAlz8Njv8pS5XvlXTJkKUvj1lK4v1NzGlcqIxiFhR7Yvskt6NJjGarBEJDnq48BDyKUgEATGTfQn4Sy0LQlF00CmMNXGVFLz+PRvaHOZTG6kEss47LkEo2sn456bBgGnoJyBRV6VBB4WACnPqyjYobSVkXRptx3qYDtCbBqfOSqrvEkpMjhHDCtDvPujIf8xMUdq1JSZfcWRAmcBa5oorBxQf/mnZWsNxl6AaxD4ZaCxg0qoVj/c/fNBYqtkLlCGv/J2ZXZ4qRqkshcRwrL6r4Foa8v/BbhHfiNccweTtFmZ9SiqttmDvA6kw4CUMR73qhkvidF91CmWmM7u65qp3/mPYHbkU1TlCVaS+CZ8xgRJSQKZPDmuDdE00yFSVKRDVhQBT/7IqS5/LCW+3qnTc5vngEcE=
|
data/lib/chef/conceal.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'chef/conceal/version'
|
2
|
+
require 'chef/encrypted_data_bag_item'
|
3
|
+
require 'chef/recipe'
|
4
|
+
require 'chef/resource'
|
5
|
+
require 'chef/provider'
|
6
|
+
require 'conceal'
|
7
|
+
|
8
|
+
class Chef
|
9
|
+
module Conceal
|
10
|
+
module DSL
|
11
|
+
def decrypt(data)
|
12
|
+
key = Chef::EncryptedDataBagItem.load_secret
|
13
|
+
::Conceal.decrypt(data, key: key)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
Chef::Recipe.send(:include, Chef::Conceal::DSL)
|
20
|
+
Chef::Resource.send(:include, Chef::Conceal::DSL)
|
21
|
+
Chef::Provider.send(:include, Chef::Conceal::DSL)
|
metadata
ADDED
@@ -0,0 +1,109 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: chef-conceal
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ben Scott
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-09-06 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: conceal
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.1'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.1'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.6'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.6'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.8.7
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.8.7
|
55
|
+
description: Adds the decrypt helper method to the chef DSL to allow the use of encrypted
|
56
|
+
attributes.
|
57
|
+
email:
|
58
|
+
- gamepoet@gmail.com
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".gitignore"
|
64
|
+
- Gemfile
|
65
|
+
- LICENSE
|
66
|
+
- README.md
|
67
|
+
- Rakefile
|
68
|
+
- chef-conceal.gemspec
|
69
|
+
- cookbook/.gitignore
|
70
|
+
- cookbook/.kitchen.yml
|
71
|
+
- cookbook/Berksfile
|
72
|
+
- cookbook/CHANGELOG.md
|
73
|
+
- cookbook/Gemfile
|
74
|
+
- cookbook/LICENSE
|
75
|
+
- cookbook/README.md
|
76
|
+
- cookbook/Thorfile
|
77
|
+
- cookbook/Vagrantfile
|
78
|
+
- cookbook/chefignore
|
79
|
+
- cookbook/metadata.rb
|
80
|
+
- cookbook/recipes/default.rb
|
81
|
+
- cookbook/test/encrypted_data_bag_secret
|
82
|
+
- lib/chef/conceal.rb
|
83
|
+
- lib/chef/conceal/version.rb
|
84
|
+
homepage: https://github.com/gamepoet/chef-conceal
|
85
|
+
licenses:
|
86
|
+
- MIT
|
87
|
+
metadata: {}
|
88
|
+
post_install_message:
|
89
|
+
rdoc_options: []
|
90
|
+
require_paths:
|
91
|
+
- lib
|
92
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 1.9.3
|
97
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
99
|
+
- - ">="
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
requirements: []
|
103
|
+
rubyforge_project:
|
104
|
+
rubygems_version: 2.2.2
|
105
|
+
signing_key:
|
106
|
+
specification_version: 4
|
107
|
+
summary: Adds a helper method to chef make decryption easier
|
108
|
+
test_files: []
|
109
|
+
has_rdoc:
|