summaryrefslogtreecommitdiff
path: root/lib/chef/resource/openssl_ec_public_key.rb
Commit message (Collapse)AuthorAgeFilesLines
* Remove the canonical DSLLamont Granquist2020-03-031-2/+2
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Add examples to various resourcesTim Smith2020-02-121-0/+20
| | | | | | This let's us get these onto the docs site as well. Signed-off-by: Tim Smith <tsmith@chef.io>
* fix Layout/AlignArgumentslcg/new-chefstyleLamont Granquist2019-07-021-9/+9
| | | | | | | | | | | | | | this is using: Layout/AlignArguments: Enabled: true EnforcedStyle: with_fixed_indentation the default style can use really excessive whitespace. on starting lines which are already long, it fully indents across to where the arguments start and then begins the line there. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* fix a bunch of weirdly mangled require linesLamont Granquist2019-05-081-1/+1
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Convert require to require_relativeLamont Granquist2019-05-081-2/+2
| | | | | | | This gives a speed boost since rubygems does not have to scan through every gem in the gemset in order to find the file. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Allow Integers for all group / owner propertiesTim Smith2018-11-161-2/+2
| | | | | | We did for many of them, but not all. Many of these should get switched over to securable, but this is a solid first step to give a more consistent user experience. Signed-off-by: Tim Smith <tsmith@chef.io>
* More resource description updatesTim Smith2018-11-071-1/+1
| | | | | | Better descriptions for many name properties and copy edits from the docs site. Signed-off-by: Tim Smith <tsmith@chef.io>
* Merge pull request #7784 from chef/descriptionsTim Smith2018-10-261-2/+2
|\ | | | | Update description fields from the docs site
| * Update description fields from the docs sitedescriptionsTim Smith2018-10-261-2/+2
| | | | | | | | | | | | Minor syncs from the docs site. Signed-off-by: Tim Smith <tsmith@chef.io>
* | Make all Chef 14 preview resources into full resourcesTim Smith2018-10-261-1/+0
|/ | | | | | These will now load and cookbook resources will not. Signed-off-by: Tim Smith <tsmith@chef.io>
* openssl_*: Update property descriptions and remove extra nil typesTim Smith2018-08-311-2/+2
| | | | | | | | We allowed String, nil, which is a legacy thing that's not longer necessary. Just make these String. This syncs all the properties with what I just pushed up to the docs site. It cleans up some wording around owner/group properties and fixes typos. Signed-off-by: Tim Smith <tsmith@chef.io>
* Cleanup existing property descriptions to match the docsTim Smith2018-08-291-3/+3
| | | | | | We fixed up some wording on the docs site. This backports those fixes Signed-off-by: Tim Smith <tsmith@chef.io>
* Update descriptions for the EC curve resourcesTim Smith2018-08-271-1/+2
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Add description fields to the openssl resourcesTim Smith2018-08-151-2/+2
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Set the new resources as preview resources and remove nil user/groupTim Smith2018-08-151-3/+3
| | | | | | No need for allowing nil here. Signed-off-by: Tim Smith <tsmith@chef.io>
* Add the helper methods to the libraryTim Smith2018-08-141-2/+2
| | | | | | Also use ::OpenSSL in a few other places. Signed-off-by: Tim Smith <tsmith@chef.io>
* Add new openssl_* resourcesTim Smith2018-08-141-0/+74
openssl_ec_private_key openssl_ec_public_key openssl_x509_certificate openssl_x509_request Signed-off-by: Tim Smith <tsmith@chef.io>