Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow owner and group properties of certificate_manage resource to be either String or Integer #83

Merged
merged 4 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Loading