summaryrefslogtreecommitdiff
path: root/lib/chef/resource/openssl_ec_public_key.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-07-30 18:06:17 -0700
committerTim Smith <tsmith@chef.io>2018-08-14 11:23:59 -0700
commitd0f19a989b93754b3f781e00ee334866dde4e7b0 (patch)
treed47fc22b973910fca448c4d890aa5309a614bf72 /lib/chef/resource/openssl_ec_public_key.rb
parentb9a1f16e85fd5fee48f7e03799828046251b6dc5 (diff)
downloadchef-d0f19a989b93754b3f781e00ee334866dde4e7b0.tar.gz
Add new openssl_* resources
openssl_ec_private_key openssl_ec_public_key openssl_x509_certificate openssl_x509_request Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/openssl_ec_public_key.rb')
-rw-r--r--lib/chef/resource/openssl_ec_public_key.rb74
1 files changed, 74 insertions, 0 deletions
diff --git a/lib/chef/resource/openssl_ec_public_key.rb b/lib/chef/resource/openssl_ec_public_key.rb
new file mode 100644
index 0000000000..6a1b11548f
--- /dev/null
+++ b/lib/chef/resource/openssl_ec_public_key.rb
@@ -0,0 +1,74 @@
+#
+# Copyright:: Copyright 2018, Chef Software 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.
+#
+
+require "chef/resource"
+
+class Chef
+ class Resource
+ class OpensslEcPublicKey < Chef::Resource
+ require "chef/mixin/openssl_helper"
+ include Chef::Mixin::OpenSSLHelper
+
+ resource_name :openssl_ec_public_key
+ provides(:openssl_ec_public_key) { true }
+
+ description "Use the openssl_ec_public_key resource to..."
+ introduced "14.4"
+
+ property :path, String,
+ description: "The path to write the file to if different than the resource's name.",
+ name_property: true
+
+ property :private_key_path, String,
+ description: "The path to the private key."
+
+ property :private_key_content, String,
+ description: "The content of the private key including new lines. Used instead of private_key_path to avoid having to first write a key to disk."
+
+ property :private_key_pass, String,
+ description: "The passphrase of the provided private key."
+
+ property :owner, [String, nil],
+ description: "The owner of all files created by the resource."
+
+ property :group, [String, nil],
+ description: "The group of all files created by the resource."
+
+ property :mode, [Integer, String],
+ description: "The permission mode of all files created by the resource.",
+ default: "0640"
+
+ action :create do
+ description ""
+
+ raise ArgumentError, "You cannot specify both 'private_key_path' and 'private_key_content' properties at the same time." if new_resource.private_key_path && new_resource.private_key_content
+ raise ArgumentError, "You must specify the private key with either 'private_key_path' or 'private_key_content' properties." unless new_resource.private_key_path || new_resource.private_key_content
+ raise "#{new_resource.private_key_path} not a valid private RSA key or password is invalid" unless priv_key_file_valid?((new_resource.private_key_path || new_resource.private_key_content), new_resource.private_key_pass)
+
+ ec_key_content = gen_ec_public_key((new_resource.private_key_path || new_resource.private_key_content), new_resource.private_key_pass)
+
+ file new_resource.path do
+ action :create
+ owner new_resource.owner unless new_resource.owner.nil?
+ group new_resource.group unless new_resource.group.nil?
+ mode new_resource.mode
+ content ec_key_content
+ end
+ end
+ end
+ end
+end