cookbook 'stunnel', '~> 5.0.8'
stunnel
(25) Versions
5.0.8
-
Follow15
Provides resources to help install and configure stunnel
cookbook 'stunnel', '~> 5.0.8', :supermarket
knife supermarket install stunnel
knife supermarket download stunnel
stunnel
Chef cookbook to install and configure stunnel
Maintainers
This cookbook is maintained by the Sous Chefs. The Sous Chefs are a community of Chef cookbook maintainers working together to maintain important cookbooks. If you’d like to know more please visit sous-chefs.org or come chat with us on the Chef Community Slack in #sous-chefs.
Requirements
- Chef 13
Platform Support
- Ubuntu 14.04+
- CentOS 6.9+
Resources
An stunnel_connection
resource is provided for defining stunnel connections. As a client:
include_recipe 'stunnel' stunnel_connection 'random_service' do connect "#{rnd_srv_node['ipaddress']}:#{rnd_srv_node['random_service']['port']}" accept node['random_service']['local_accept_port'] notifies :restart, 'service[stunnel]' end
As a server:
include_recipe 'stunnel::server' stunnel_connection 'random_service' do accept node['random_service']['tunnel_port'] connect node['random_service']['port'] notifies :restart, 'service[stunnel]' end
Attributes
Lots of configurable attributes:
default['stunnel']['install_method'] = 'package' # the other valid option is 'source' default['stunnel']['packages'] = %w(stunnel4) default['stunnel']['service_name'] = 'stunnel4' default['stunnel']['ssl_dir'] = '/etc/ssl' default['stunnel']['server_ssl_req'] = "/C=US/ST=Several/L=Locality/O=Example/OU=Operations/CN=#{node['fqdn']}/emailAddress=root@#{node['fqdn']}" default['stunnel']['cert_fqdn'] = node['fqdn'] default['stunnel']['use_chroot'] = false default['stunnel']['chroot_path'] = "/usr/var/lib/stunnel" default['stunnel']['pidfile'] = "/tmp/stunnel.pid" default['stunnel']['user'] = "root" default['stunnel']['group'] = "root" default['stunnel']['ulimit'] = nil # set to a number to add ulimit setting to init script default['stunnel']['https']['enabled'] = false default['stunnel']['https']['accept_port'] = "443" default['stunnel']['https']['connect_port'] = "81" default['stunnel']['client_mode'] = true default['stunnel']['fips'] = nil default['stunnel']['ssl_version'] = 'all' default['stunnel']['ssl_options'] = 'NO_SSLv2' default['stunnel']['socket_tunings'] = %w(l:TCP_NODELAY=1 r:TCP_NODELAY=1) default['stunnel']['compression'] = nil # zlib default['stunnel']['debug'] = nil # 3 default['stunnel']['output'] = '/var/log/stunnel.log' # key value pair mapping for default var file default['stunnel']['default']['enabled'] = 1 default['stunnel']['default']['files'] = '/etc/stunnel/-.conf' default['stunnel']['default']['options'] = '' # certificate/key is needed in server mode and optional in client mode default['stunnel']['certificate_path'] = nil # /etc/pki/stunnel/cert.pem default['stunnel']['key_path'] = nil # /etc/pki/stunnel/key.pem
FIPS
FIPS mode can be enabled or disabled with the attribute ['stunnel']['fips']
. A value of nil will omit the
"fips" setting from the config file altogether, falling back to the default behavior for that version of stunnel:
- For 4.x releases FIPS defaults to on if stunnel was compiled with FIPS support.
- For 5.x releases FIPS defaults to off.
ChefSpec Matchers
A set of ChefSpec matchers is included for unit testing with ChefSpec. These
are automatically available when you make this cookbook a dependency in your
cookbook's metadata. To illustrate:
Recipe code:
stunnel_connection 'haproxy_ssl' do accept '443' connect '8443' end
And the matching spec:
it 'should create stunnel_connection haproxy_ssl' do expect(chef_run).to create_stunnel_connection('haproxy_ssl').with( accept: '443', connect: '8443' ) end
You can also make assertions for notifying other resources:
it 'should notify stunnel to restart on changes to stunnel_connection[haproxy_ssl]' do resource = chef_run.stunnel_connection('haproxy_ssl') expect(resource).to notify('service[stunnel]').to(:restart) end
A matcher for the delete action is also available:
it 'should delete stunnel_connection haproxy_ssl' do expect(chef_run).to delete_stunnel_connection('haproxy_ssl') end
Testing Locally
To run the tests, make sure you've got the latest ChefDK along with
Vagrant then you can run chef exec kitchen test
which will run the
entire test suite on all platforms.
Contributors
This project exists thanks to all the people who contribute.
Backers
Thank you to all our backers!
Sponsors
Support this project by becoming a sponsor. Your logo will show up here with a link to your website.
Dependent cookbooks
This cookbook has no specified dependencies.
Contingent cookbooks
Change Log
5.0.8 - 2024-05-06
5.0.7 - 2024-05-06
5.0.6 - 2023-09-28
5.0.5 - 2023-09-04
5.0.4 - 2023-09-04
5.0.3 - 2023-05-17
5.0.2 - 2023-05-16
- Fix metadata
- Standardise files with repo-management
5.0.1 - 2023-05-03
5.0.0 - 2023-02-27
- Fix metadata
- Update standardfiles
4.1.4 - 2023-02-14
4.1.3 - 2023-02-14
- Remove delivery folder
- Fix test cookbook by updating nginx dependency & creating an nginx_service resource
- Add unified_mode true & String type to connect & accept properties for connection resource
- Split certs into server & client in test cookbook
4.1.2 - 2021-08-31
- Standardise files with files in sous-chefs/repo-management
v4.1.0 (2020-02-20)
Add
- Add docs for stunnel cert / key path attributes #29 (jhmartin)
- Adds the protocol option when creating a STunnel server #25 (maraca)
- Support arbitrary options for tunnels #24 (ssevertson)
- Resolved: ChefStyle/UnnecessaryPlatformCaseStatement cookstyle warning
- Migrated to Github Actions for testing
v4.0.0
Add
v3.1.1 (2018-10-23)
Merged pull requests:
- Add in deprecation warnings for Chef 12 removal #44 (martinisoft)
- Update Copyright #43 (onlyhavecans)
v3.1.0 (2017-11-08)
Merged pull requests:
- Testing to chef 13 #42 (onlyhavecans)
- Add key and verifyChain connection options #40 (mitch-roblox)
v3.0.0 (2017-09-06)
Implemented enhancements:
- Convert to Chef 12.6+ Custom Resource #41 (martinisoft)
Merged pull requests:
- Remove 'supports { manage_home: true }' #39 (RavWar)
- Add FIPS configuration option #37 (mitch-roblox)
v2.3.0 (2016-11-23)
Merged pull requests:
- Add a ulimit setting, added to init script if not nil #36 (onlyhavecans)
v2.2.0 (2016-11-15)
Implemented enhancements:
- Lower the precedence of services node attributes #31 (martinisoft)
- Expose SSL ciphers option #23 (thoutenbos)
- Source install #22 (thoutenbos)
Closed issues:
- Latest version 0.2.5 should be version 2.0.5 #16
Merged pull requests:
- Replacing restart on the configuration for reload #35 (therobot)
- Modernize cookbook #30 (martinisoft)
- Add basic ChefSpec matchers #20 (jeffbyrnes)
- Feature/log warnings #9 (dje)
v2.1.0 (2014-04-11)
Merged pull requests:
- Added CAfile, cert, verify (eg. 1, 2, 3) to stunnel_connection resource #18 (portertech)
- Add override for client_mode option per connection #12 (autrejacoupa)
v2.0.4 (2013-06-19)
Merged pull requests:
v2.0.2 (2013-03-27)
v2.0.0 (2012-12-29)
Merged pull requests:
* This Change Log was automatically generated by github_changelog_generator
Collaborator Number Metric
5.0.8 passed this metric
Contributing File Metric
5.0.8 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Cookstyle Metric
5.0.8 passed this metric
No Binaries Metric
5.0.8 passed this metric
Testing File Metric
5.0.8 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
5.0.8 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
5.0.8 passed this metric
5.0.8 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Cookstyle Metric
5.0.8 passed this metric
No Binaries Metric
5.0.8 passed this metric
Testing File Metric
5.0.8 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
5.0.8 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
5.0.8 passed this metric
5.0.8 passed this metric
Testing File Metric
5.0.8 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
5.0.8 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
5.0.8 failed this metric
5.0.8 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number