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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c3fe91744808f1e7ba73f98861c2cec2cc5d8f57f287a383455206c3d7b86007
4
- data.tar.gz: 77575d868c43a880c15bc8cdfd0e6c28680a3b983b0bb9c7fb8f73aa1a7756b4
3
+ metadata.gz: 82a2d07937047a9e9d9fea817417563a68368e7c87671308a463de5bcc49f282
4
+ data.tar.gz: d365d128642d35f31debfae00cb1bf2910f4821c57cdcc0df61b7b370fe368b5
5
5
  SHA512:
6
- metadata.gz: 4daa68195f21a7e8c37811678a1e3a880168860527e202dfed9f7d383982383618975b796ceaf40da0bc6e228016c496a0414dc87757a166ce93a37c8ece3af6
7
- data.tar.gz: b04a9d8b17582758fa6b2f3ae9835763ee66c67adfea7cf8202d6f19618c3812563d9c971ead1efb293a90936ec0be23f53e3ec1e07f53594c7107fa40e91a55
6
+ metadata.gz: 6d46bf5104d8b214c37a9088528257ac9c84a4da29b35365b37655f2ef50fa75d6ceb6b649bc105e4aa19f2a48a809908e5fa40bd73a0094b32933bc94fc4b8d
7
+ data.tar.gz: 742a71ca0bca091bfb7c8aba9e96cdcfb120d958c1518d8e907717f0c699db2459b4b2e08aa17abcb3cdadca285f64920763c508d7449eff622dd3f6bfabc675
@@ -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.
@@ -21,7 +21,7 @@
21
21
 
22
22
  module ChefConfig
23
23
  CHEFCONFIG_ROOT = File.expand_path("../..", __FILE__)
24
- VERSION = "14.1.12"
24
+ VERSION = "14.2.0"
25
25
  end
26
26
 
27
27
  #
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.1.12
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-05-16 00:00:00.000000000 Z
11
+ date: 2018-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mixlib-shellout