Snapshot của chef/chef-vault: 406★ · Ruby. Securely manage passwords, certs, and other secrets in Chef
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
Gem that allows you to encrypt a Chef Data Bag Item using the public keys of
a list of chef nodes. This allows only those chef nodes to decrypt the
encrypted values.
For a more detailed explanation of how chef-vault works, please refer to this blog post Chef Vault – what is it and what can it do for you? by Nell Shamrell-Harrington.
INSTALLATION:
Be sure you are running the latest version Chef. Versions earlier than
0.10.0 don't support plugins:
gem install chef
This plugin is distributed as a Ruby Gem. To install it, run:
gem install chef-vault
Depending on your system's configuration, you may need to run this command
with root privileges.
DEVELOPMENT:
Git Hooks
There is a git pre-commit hook to help you keep your chefstyle up to date.
If you wish to use it, simply:
(These values can be overridden on the command line by using -A)
NOTE: chef-vault 1.0 knife commands are not supported! Please use chef-vault
2.0 commands.
Vault
knife vault create VAULT ITEM VALUES
knife vault edit VAULT ITEM
knife vault refresh VAULT ITEM
knife vault update VAULT ITEM VALUES [--clean]
knife vault remove VAULT ITEM VALUES
knife vault delete VAULT ITEM
knife vault rotate keys VAULT ITEM
knife vault rotate all keys
knife vault show VAULT [ITEM] [VALUES]
knife vault download VAULT ITEM PATH
knife vault isvault VAULT ITEM
knife vault itemtype VAULT ITEM
Note: Creating a VAULT ITEM with an ITEM name ending in "_keys" causes the VAULT to treat it as an ordinary `data_bag` instead of as a vault.
Global Options
Short
Long
Description
Default
Valid Values
Sub-Commands
-M MODE
--mode MODE
Chef mode to run in. Can be set in config.rb
solo
solo, client
all
-S SEARCH
--search SEARCH
Chef Server SOLR Search Of Nodes
create, remove , update
-C CLIENTS
--clients CLIENTS
Chef clients to be added as clients, can be comma list
create, remove , update
-A ADMINS
--admins ADMINS
Chef clients or users to be vault admins, can be comma list
create, remove, update
-J FILE
--json FILE
JSON file to be used for values, will be merged with VALUES if VALUES is passed
create, update
--file FILE
File that chef-vault should encrypt. It adds "file-content" & "file-name" keys to the vault item
create, update
-p DATA
--print DATA
Print extra vault data
search, clients, admins, all
show
-F FORMAT
--format FORMAT
Format for decrypted output
summary
summary, json, yaml, pp
show
--clean-unknown-clients
Remove unknown clients during key rotation
refresh, remove, rotate
--clean
Clean clients list before performing search
refresh, update
--keys-mode
method to use to manage keys
default
default, sparse
create
USAGE IN RECIPES
To use this gem in a recipe to decrypt data you must first install the gem
via a chef_gem resource. Once the gem is installed require the gem and then
you can create a new instance of ChefVault.
NOTE: chef-vault 1.0 style decryption is supported, however it has been
deprecated and chef-vault 2.0 decryption should be used instead
Example Code
chef_gem 'chef-vault' do
compile_time true if respond_to?(:compile_time)
end
require 'chef-vault'
item = ChefVault::Item.load("passwords", "root")
item["password"]
Note that in this case, the gem needs to be installed at compile time
because the require statement is at the top-level of the recipe. If
you move the require of chef-vault and the call to ::load to
library or provider code, you can install the gem in the converge phase
instead.
Specifying an alternate node name or client key path
Normally, the value of Chef::Config[:node_name] is used to find the
per-node encrypted secret in the keys data bag item, and the value of
Chef::Config[:client_key] is used to locate the private key to decrypt
this secret. If Chef::Config[:client_key_contents] is defined, it takes
precedence over the file path specified in Chef::Config[:client_key].
These can be overridden by passing a hash with the keys :node_name or
:client_key_path to ChefVault::Item.load:
The above example assumes that you have transferred
/secure/place/service_foo.pem to your system via a secure channel.
This usage allows you to decrypt a vault using a key shared among several
nodes, which can be helpful when working in cloud environments or other
configurations where nodes are created dynamically.
chef_vault_item helper
The chef-vault cookbook
contains a recipe to install the chef-vault gem and a helper method
chef_vault_helper which makes it easier to test cookbooks that use
chef-vault using Test Kitchen.
DETERMINING IF AN ITEM IS A VAULT
ChefVault provides a helper method to determine if a data bag item is a vault,
which can be helpful if you produce a recipe for community consumption and want
to support both normal data bags and vaults:
if ChefVault::Item.vault?('passwords', 'root')
item = ChefVault::Item.load('passwords', 'root')
else
item = Chef::DataBagItem.load('passwords', 'root')
end
This functionality is also available from the command line as knife vault isvault VAULT ITEM.
DETERMINING THE TYPE OF A DATA BAG ITEM
ChefVault provides a helper method to determine the type of a data bag item.
It returns one of the symbols :normal, :encrypted or :vault
case ChefVault::Item.data_bag_item_type('passwords', 'root')
when :normal
...
when :encrypted
...
when :vault
...
end
This functionality is also available from the command line as knife vault itemtype VAULT ITEM.
USAGE STAND ALONE
chef-vault can be used as a stand alone binary to decrypt values stored in
Chef. It requires that Chef is installed on the system and that you have a
valid config.rb. This is useful if you want to mix chef-vault into non-Chef
recipe code, for example some other script where you want to protect a
password.
It does still require that the data bag has been encrypted for the user's or
client's pem and pushed to the Chef server. It mixes Chef into the gem and
uses it to go grab the data bag.
Use chef-vault --help to see all all available options
Example usage (password)
chef-vault -v passwords -i root -a password -k /etc/chef/config.rb
SCALING
As more nodes use a shared key, some operations like refresh or update can execute more efficiently using sparse mode (see issue #237).
To create a vault item using sparse mode, pass the value sparse to the --keys-mode option to knife vault create.
TESTING
To use Chef Vault in Test Kitchen, ensure that the chef-vault recipe
is in your run_list, and then add the following to your
suite in .kitchen.yml:
You can then use the chef_vault_item helper in the aforementioned chef-vault cookbook.
To stub vault items in ChefSpec, use the
chef-vault-testfixtures
gem.
Contributing
For information on contributing to this project see https://github.com/chef/chef/blob/master/CONTRIBUTING.md
Authors
Author:: Kevin Moser - @moserke
Author:: Eli Klein - @eliklein
Author:: Joey Geiger - @jgeiger
Author:: Joshua Timberman - @jtimberman
Author:: James FitzGibbon - @jf647
Author:: Thom May - @thommay
Contributors
Contributor:: Matt Brimstone - @brimstone
Contributor:: Thomas Gschwind - @thg65
Contributor:: Reto Hermann
License
Copyright:: Copyright (c) 2013-15 Nordstrom, Inc.
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.
chef/chef-vault có 406 sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/chef/chef-vault. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
chef/chef-vault có tag gì không?
Bản đồng bộ chưa ghi nhận topic GitHub nào cho chef/chef-vault. GitHub topics hiển thị ở thanh bên phải trang repo — đó là nơi đáng kiểm tra nhất.
chef/chef-vault còn đang phát triển không?
Commit gần nhất trên chef/chef-vault là 21 ngày trước (theo timestamp GitHub). Repo có 155 fork — một chỉ báo về mức độ quan tâm của cộng đồng.
chef/chef-vault là gì?
chef/chef-vault (chef/chef-vault) là dự án Ruby trên GitHub. Theo mô tả gốc: Securely manage passwords, certs, and other secrets in Chef
chef/chef-vault viết bằng ngôn ngữ gì?
chef/chef-vault chủ yếu viết bằng Ruby. Trường "language" của GitHub dựa trên phần lớn byte ở nhánh mặc định.
Đọc đầy đủ README ở tab phía trên.
Muốn nghe thêm một ý kiến về chef-vault?
Hỏi một AI đọc được trang này — một cú bấm là có ngay nhận định về chef-vault.