Version information
This version is compatible with:
- ,
Start using this module
Add this module to your Puppetfile:
mod 'srozzo-stunnel', '1.0.1'
Learn more about managing modules with a PuppetfileDocumentation
#stunnel
####Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with stunnel
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
##Overview
The stunnel module installs, configures, and manages stunnel.
##Setup
###Setup Requirements
CentOS does not include an init script with their stunnel package. One is not offered with this module.
###Beginning with stunnel
Instantiate the module with the minimum global configuration and tunnel configuration to meet your needs.
class {'::stunnel' :
global_options => {
cert => '/etc/stunnel/keys/global.pem',
chroot => '/var/stunnel4',
pid => '/stunnel.pid',
setuid => 'stunnel4',
setgid => 'stunnel4',
sslVersion => 'all',
socket => [ 'l:TCP_NODELAY=1', 'r:TCP_NODELAY=1'],
ciphers => 'HIGH:!AECDH:!ADH:!aNULL:!eNULL:!NULL',
options => [
'DONT_INSERT_EMPTY_FRAGMENTS',
'NO_SSLv2',
'NO_SSLv3'
],
},
tunnels => {
smtp-tls-tunnel => {
options => {
accept => '2525',
client => 'yes',
connect => 'email-smtp.us-west-2.amazonaws.com:465',
delay => 'yes'
}
}
}
}
##Usage
All interaction with the stunnel module should be done through the main init class. All other classes are enforced as private.
##Reference
###Classes
####Public Classes
- stunnel: Main class, includes all other classes.
####Private Classes
- stunnel::installs: Handles the package management.
- stunnel::config: Manages the configuration file and chroot directory.
- stunnel::service: Manages the service.
- stunnel::params: Default module parameters
####Types
- stunnel::tunnel: Manages configuration fragments for each service tunnel
###Parameters
The following parameters are available in the ::stunnel
class:
####global_options
Global portion of the stunnel configuration. See the stunnel man page and the examples herein for reference. https://www.stunnel.org/static/stunnel.html
####tunnels
Service tunnel configurations. See the stunnel man page and the examples herein for reference. https://www.stunnel.org/static/stunnel.html
####package_ensure
Defines state of stunnel package. Valid options are synonymous with the package type ensure
parameter.
https://docs.puppetlabs.com/references/latest/type.html#package-attribute-ensure
####package_name
The name of the stunnel package to install. Valid options are synonymous with the package type name
parameter.
https://docs.puppetlabs.com/references/latest/type.html#package-attribute-name
####service_conf
Path to where the stunnel.conf should reside on the filesystem. Must me a valid absolute filesystem path.
####service_ensure
The state the stunnel service should be in. Valid options are synonymous with the service type ensure
parameter.
https://docs.puppetlabs.com/references/latest/type.html#service-attribute-ensure
####service_name
The name of the stunnel service. Valid options are synonymous with the service type name
parameter.
https://docs.puppetlabs.com/references/latest/type.html#service-attribute-name
###Sample Hiera Yaml
stunnel::global_options:
cert: '/etc/stunnel/keys/global.pem'
chroot: '/var/stunnel4'
pid: '/stunnel.pid' # Relative to chroot
setuid: 'stunnel4'
setgid: 'stunnel4'
sslVersion: 'all'
socket:
- 'l:TCP_NODELAY=1'
- 'r:TCP_NODELAY=1'
ciphers: 'HIGH:!AECDH:!ADH:!aNULL:!eNULL:!NULL'
options:
- 'DONT_INSERT_EMPTY_FRAGMENTS'
- 'NO_SSLv2'
- 'NO_SSLv3'
stunnel::tunnels:
smtp-tls-tunnel:
options:
accept: '2525'
client: 'yes'
connect: 'email-smtp.us-west-2.amazonaws.com:465'
delay: 'yes'
pop3:
options:
accept: '127.168.11.10:995'
connect: '127.0.0.1:110'
##Limitations
This module has been tested on:
- Ubuntu 12.04, 14.04
- CentOS 6.0, 7.0
##Development
Submit a pull request, and unit tests for any new functionality.
##Contributors
- srozzo
Dependencies
- puppetlabs/stdlib (4.x)
- puppetlabs/concat (1.x)
- electrical/file_concat (1.x)
MIT License Copyright (c) 2015 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.