Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 570 Bytes

README.markdown

File metadata and controls

27 lines (19 loc) · 570 Bytes

Puppet HTTP Authentication type

This provides a HTTP Authentication type for Puppet that support Basic and Digest authentication.

Copyright - James Turnbull [email protected]

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',
  password => 'password',
  realm => 'realm',
  mechanism => basic,
  ensure => present,
}