httpauth
Puppet type for managing HTTP Basic and Digest auth files, a la htpasswd.
Version information
released Mar 16th 2020
This version is compatible with:
- Puppet Enterprise 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x, 2017.2.x, 2016.4.x
- Puppet >= 4.10.0 < 7.0.0
- , , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'jamtur01-httpauth', '0.0.6'
Learn more about managing modules with a PuppetfileDocumentation
jamtur01/httpauth — version 0.0.6 Mar 16th 2020
Puppet HTTP Authentication type
This provides a HTTP Authentication type for Puppet that support Basic and Digest authentication.
Copyright - James Turnbull james@lovedthanlost.net
License: Apache 2.0
Thanks to John Ferlito and JKur (https://github.com/jkur) for patches.
Requirements
- webrick
Usage
httpauth { 'name':
username => 'username',
file => '/path/to/password/file',
mode => 0644,
password => 'password',
realm => 'realm',
mechanism => basic,
ensure => present,
}