Skip to content

Commit

Permalink
Treat keys file content as Sensitive
Browse files Browse the repository at this point in the history
This file contains unencrypted shared secrets.  Using `Sensitive` will
stop changes being logged, and exposed in puppetDB etc.
  • Loading branch information
alexjfisher committed Dec 5, 2019
1 parent 840f1bc commit eb13215
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ Force chrony to only use RAM & prevent swapping.

## Limitations

This module has been built on and tested against Puppet 3.2.3 and higher.
This module has been built on and tested against Puppet 5.5 and higher.

The module has been tested on:
* Arch Linux
Expand Down
2 changes: 1 addition & 1 deletion manifests/config.pp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
owner => $config_keys_owner,
group => $config_keys_group,
mode => $config_keys_mode,
content => template($config_keys_template),
content => Sensitive(template($config_keys_template)),
}

}

0 comments on commit eb13215

Please sign in to comment.