Skip to content

Commit

Permalink
Allow owner and group properties of certificate_manage resource to be…
Browse files Browse the repository at this point in the history
… either String or Integer (#83)

* Allow owner and group to be String or Integer

Signed-off-by: Hans Rakers <h.rakers@global.leaseweb.com>

* Update CHANGELOG

---------

Signed-off-by: Hans Rakers <h.rakers@global.leaseweb.com>
Co-authored-by: Lance Albertson <lance@osuosl.org>
Co-authored-by: Corey Hemminger <hemminger@hotmail.com>
  • Loading branch information
3 people committed May 3, 2024
1 parent 6d055e7 commit 0b9a72c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,8 @@ This file is used to list changes made in each version of the certificate cookbo

## Unreleased

- Allow owner and group to be String or Integer

## 2.0.24 - *2024-05-03*

## 2.0.23 - *2024-05-03*
Expand Down
4 changes: 2 additions & 2 deletions resources/manage.rb
Expand Up @@ -52,8 +52,8 @@
property :create_subfolders, [true, false], default: true

# The owner and group of the managed certificate and key
property :owner, String, default: 'root'
property :group, String, default: 'root'
property :owner, [String, Integer], default: 'root'
property :group, [String, Integer], default: 'root'

# Cookbook to search for blank.erb template
property :cookbook, String, default: 'certificate'
Expand Down

0 comments on commit 0b9a72c

Please sign in to comment.