chef-config 14.1.12 → 14.2.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 +4 -4
- data/lib/chef-config/config.rb +8 -1
- data/lib/chef-config/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 82a2d07937047a9e9d9fea817417563a68368e7c87671308a463de5bcc49f282
|
|
4
|
+
data.tar.gz: d365d128642d35f31debfae00cb1bf2910f4821c57cdcc0df61b7b370fe368b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d46bf5104d8b214c37a9088528257ac9c84a4da29b35365b37655f2ef50fa75d6ceb6b649bc105e4aa19f2a48a809908e5fa40bd73a0094b32933bc94fc4b8d
|
|
7
|
+
data.tar.gz: 742a71ca0bca091bfb7c8aba9e96cdcfb120d958c1518d8e907717f0c699db2459b4b2e08aa17abcb3cdadca285f64920763c508d7449eff622dd3f6bfabc675
|
data/lib/chef-config/config.rb
CHANGED
|
@@ -592,7 +592,7 @@ module ChefConfig
|
|
|
592
592
|
# the 'mixlib-authorization' project for more detail). Currently, versions
|
|
593
593
|
# 1.0, 1.1, and 1.3 are available.
|
|
594
594
|
default :authentication_protocol_version do
|
|
595
|
-
if fips
|
|
595
|
+
if fips || ssh_agent_signing
|
|
596
596
|
"1.3"
|
|
597
597
|
else
|
|
598
598
|
"1.1"
|
|
@@ -621,6 +621,10 @@ module ChefConfig
|
|
|
621
621
|
# never be set to true or its possibly an easily exploitable security hole.
|
|
622
622
|
default :follow_client_key_symlink, false
|
|
623
623
|
|
|
624
|
+
# Enable ssh-agent signing mode. This requires {client_key} be set to a
|
|
625
|
+
# public key rather than the usual private key.
|
|
626
|
+
default :ssh_agent_signing, false
|
|
627
|
+
|
|
624
628
|
# This secret is used to decrypt encrypted data bag items.
|
|
625
629
|
default(:encrypted_data_bag_secret) do
|
|
626
630
|
if File.exist?(platform_specific_path("/etc/chef/encrypted_data_bag_secret"))
|
|
@@ -1087,6 +1091,9 @@ module ChefConfig
|
|
|
1087
1091
|
# can be set to a string or array of strings for URIs to set as rubygems sources
|
|
1088
1092
|
default :rubygems_url, "https://www.rubygems.org"
|
|
1089
1093
|
|
|
1094
|
+
# globally sets the default of the clear_sources property on the gem_package and chef_gem resources
|
|
1095
|
+
default :clear_gem_sources, false
|
|
1096
|
+
|
|
1090
1097
|
# If installed via an omnibus installer, this gives the path to the
|
|
1091
1098
|
# "embedded" directory which contains all of the software packaged with
|
|
1092
1099
|
# omnibus. This is used to locate the cacert.pem file on windows.
|
data/lib/chef-config/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chef-config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 14.
|
|
4
|
+
version: 14.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Jacob
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-06-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-shellout
|