hiera-eyaml 2.0.1 → 2.0.2
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 +4 -4
- data/.travis.yml +1 -1
- data/Gemfile.lock +17 -14
- data/README.md +1 -5
- data/hiera-eyaml.gemspec +0 -1
- data/lib/hiera/backend/eyaml.rb +1 -1
- metadata +8 -18
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
data.tar.gz: 320ecb88b86477c86909c67e49001d9928fd9d5b
|
|
4
|
+
metadata.gz: c95ad3120781cc53e726f22ce0a007d15d7abd23
|
|
5
5
|
SHA512:
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
data.tar.gz: 7d8dc29c9ee973fc703fcbb69d5a4c2ba09805b5cdaef0a325be65ed0ba25d998082069b05b911605940c1952dcc083554e445f616e7215a6d7d3470f77c7ff9
|
|
7
|
+
metadata.gz: f8388e118f05c7365f9ed577653f6419bb4531fbd863fd56960e6c98bc606373b756060689da05b681a8fbc3894f73c95ec447193a401310fb1ac4ffbc445785
|
data/.travis.yml
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,38 +1,41 @@
|
|
|
1
1
|
GEM
|
|
2
2
|
remote: https://rubygems.org/
|
|
3
3
|
specs:
|
|
4
|
-
|
|
4
|
+
CFPropertyList (2.2.7)
|
|
5
|
+
aruba (0.5.4)
|
|
5
6
|
childprocess (>= 0.3.6)
|
|
6
7
|
cucumber (>= 1.1.1)
|
|
7
8
|
rspec-expectations (>= 2.7.0)
|
|
8
9
|
builder (3.2.2)
|
|
9
|
-
childprocess (0.3
|
|
10
|
+
childprocess (0.5.3)
|
|
10
11
|
ffi (~> 1.0, >= 1.0.11)
|
|
11
|
-
cucumber (1.3.
|
|
12
|
+
cucumber (1.3.14)
|
|
12
13
|
builder (>= 2.1.2)
|
|
13
14
|
diff-lcs (>= 1.1.3)
|
|
14
15
|
gherkin (~> 2.12)
|
|
15
16
|
multi_json (>= 1.7.5, < 2.0)
|
|
16
|
-
multi_test (>= 0.
|
|
17
|
+
multi_test (>= 0.1.1)
|
|
17
18
|
diff-lcs (1.2.5)
|
|
18
|
-
facter (
|
|
19
|
+
facter (2.0.1)
|
|
20
|
+
CFPropertyList (~> 2.2.6)
|
|
19
21
|
ffi (1.9.3)
|
|
20
22
|
gherkin (2.12.2)
|
|
21
23
|
multi_json (~> 1.3)
|
|
22
|
-
hiera (1.2
|
|
24
|
+
hiera (1.3.2)
|
|
23
25
|
json_pure
|
|
24
|
-
hiera-eyaml-plaintext (0.
|
|
25
|
-
highline (1.6.
|
|
26
|
+
hiera-eyaml-plaintext (0.6)
|
|
27
|
+
highline (1.6.21)
|
|
26
28
|
json_pure (1.8.1)
|
|
27
|
-
multi_json (1.
|
|
28
|
-
multi_test (0.
|
|
29
|
-
puppet (3.
|
|
30
|
-
facter (
|
|
29
|
+
multi_json (1.10.0)
|
|
30
|
+
multi_test (0.1.1)
|
|
31
|
+
puppet (3.5.1)
|
|
32
|
+
facter (> 1.6, < 3)
|
|
31
33
|
hiera (~> 1.0)
|
|
34
|
+
json_pure
|
|
32
35
|
rgen (~> 0.6.5)
|
|
33
|
-
rake (10.1
|
|
36
|
+
rake (10.3.1)
|
|
34
37
|
rgen (0.6.6)
|
|
35
|
-
rspec-expectations (2.14.
|
|
38
|
+
rspec-expectations (2.14.5)
|
|
36
39
|
diff-lcs (>= 1.1.3, < 2.0)
|
|
37
40
|
trollop (2.0)
|
|
38
41
|
|
data/README.md
CHANGED
|
@@ -71,11 +71,7 @@ This creates a public and private key with default names in the default location
|
|
|
71
71
|
|
|
72
72
|
Since the point of using this module is to securely store sensitive information, it's important to store these keys securely.
|
|
73
73
|
If using Hiera with Puppet, Your puppetmaster will need to access these keys to perform decryption when the puppet agent runs on a remote node.
|
|
74
|
-
So for this reason, a suggested location might be to store them in
|
|
75
|
-
|
|
76
|
-
/etc/puppet/secure/keys
|
|
77
|
-
|
|
78
|
-
(Using a secure/keys/ subfolder is so that you can still store other secure puppet files in the secure/ folder that might not be related to this module.)
|
|
74
|
+
So for this reason, a suggested location might be to store them in `/etc/puppet/secure/keys` or `/var/lib/puppet/keys` depending on your setup.
|
|
79
75
|
|
|
80
76
|
The permissions for this folder should allow the puppet user (normally 'puppet') execute access to the keys directory, read only access to the keys themselves and restrict everyone else:
|
|
81
77
|
|
data/hiera-eyaml.gemspec
CHANGED
|
@@ -17,7 +17,6 @@ Gem::Specification.new do |gem|
|
|
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
18
|
gem.require_paths = ["lib"]
|
|
19
19
|
|
|
20
|
-
gem.add_dependency('hiera', '>= 1.2.1')
|
|
21
20
|
gem.add_dependency('trollop', '>= 2.0')
|
|
22
21
|
gem.add_dependency('highline', '>= 1.6.19')
|
|
23
22
|
end
|
data/lib/hiera/backend/eyaml.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hiera-eyaml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom Poulton
|
|
@@ -9,38 +9,28 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2014-
|
|
12
|
+
date: 2014-05-06 00:00:00 Z
|
|
13
13
|
dependencies:
|
|
14
|
-
- !ruby/object:Gem::Dependency
|
|
15
|
-
name: hiera
|
|
16
|
-
prerelease: false
|
|
17
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
|
18
|
-
requirements:
|
|
19
|
-
- - ">="
|
|
20
|
-
- !ruby/object:Gem::Version
|
|
21
|
-
version: 1.2.1
|
|
22
|
-
type: :runtime
|
|
23
|
-
version_requirements: *id001
|
|
24
14
|
- !ruby/object:Gem::Dependency
|
|
25
15
|
name: trollop
|
|
26
16
|
prerelease: false
|
|
27
|
-
requirement: &
|
|
17
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
28
18
|
requirements:
|
|
29
19
|
- - ">="
|
|
30
20
|
- !ruby/object:Gem::Version
|
|
31
21
|
version: "2.0"
|
|
32
22
|
type: :runtime
|
|
33
|
-
version_requirements: *
|
|
23
|
+
version_requirements: *id001
|
|
34
24
|
- !ruby/object:Gem::Dependency
|
|
35
25
|
name: highline
|
|
36
26
|
prerelease: false
|
|
37
|
-
requirement: &
|
|
27
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
38
28
|
requirements:
|
|
39
29
|
- - ">="
|
|
40
30
|
- !ruby/object:Gem::Version
|
|
41
31
|
version: 1.6.19
|
|
42
32
|
type: :runtime
|
|
43
|
-
version_requirements: *
|
|
33
|
+
version_requirements: *id002
|
|
44
34
|
description: Hiera backend for decrypting encrypted yaml properties
|
|
45
35
|
email:
|
|
46
36
|
executables:
|
|
@@ -97,13 +87,13 @@ require_paths:
|
|
|
97
87
|
- lib
|
|
98
88
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
99
89
|
requirements:
|
|
100
|
-
- &
|
|
90
|
+
- &id003
|
|
101
91
|
- ">="
|
|
102
92
|
- !ruby/object:Gem::Version
|
|
103
93
|
version: "0"
|
|
104
94
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
105
95
|
requirements:
|
|
106
|
-
- *
|
|
96
|
+
- *id003
|
|
107
97
|
requirements: []
|
|
108
98
|
|
|
109
99
|
rubyforge_project:
|