Skip to content

Commit fc70396

Browse files
committed
Release 11.0.0
* Add optional variables to support SSL CRL check configuration (voxpupuli#869) * Remove support for CentOS 6 (voxpupuli#870)
1 parent 736c8d9 commit fc70396

File tree

3 files changed

+40
-1
lines changed

3 files changed

+40
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
44
Each new release typically also includes the latest modulesync defaults.
55
These should not affect the functionality of the module.
66

7+
## [v11.0.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v11.0.0) (2021-01-16)
8+
9+
[Full Changelog](https://github.com/voxpupuli/puppet-rabbitmq/compare/v10.3.0...v11.0.0)
10+
11+
**Breaking changes:**
12+
13+
- Remove support for CentOS 6 [\#870](https://github.com/voxpupuli/puppet-rabbitmq/pull/870) ([towo](https://github.com/towo))
14+
15+
**Implemented enhancements:**
16+
17+
- Add optional variables to support SSL CRL check configuration [\#869](https://github.com/voxpupuli/puppet-rabbitmq/pull/869) ([dimonzozo](https://github.com/dimonzozo))
18+
719
## [v10.3.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v10.3.0) (2020-12-01)
820

921
[Full Changelog](https://github.com/voxpupuli/puppet-rabbitmq/compare/v10.2.0...v10.3.0)

REFERENCE.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -834,6 +834,33 @@ Functionality can be tested with cipherscan or similar tool: https://github.com/
834834

835835
Default value: []
836836

837+
##### `ssl_crl_check`
838+
839+
Data type: `Enum['true','false','peer','best_effort']`
840+
841+
Perform CRL (Certificate Revocation List) verification
842+
Please see the [Erlang SSL](https://erlang.org/doc/man/ssl.html#type-crl_check) module documentation for more information.
843+
844+
Default value: 'false'
845+
846+
##### `ssl_crl_cache_hash_dir`
847+
848+
Data type: `Optional[Stdlib::Absolutepath]`
849+
850+
This setting makes use of a directory where CRLs are stored in files named by the hash of the issuer name.
851+
Please see the [Erlang SSL](https://erlang.org/doc/man/ssl.html#type-crl_cache_opts) module documentation for more information.
852+
853+
Default value: `undef`
854+
855+
##### `ssl_crl_cache_http_timeout`
856+
857+
Data type: `Optional[Integer]`
858+
859+
This setting enables use of internal CRLs cache and sets HTTP timeout interval on fetching CRLs from distributino URLs defined inside certificate.
860+
Please see the [Erlang SSL](https://erlang.org/doc/man/ssl.html#type-crl_cache_opts) module documentation for more information.
861+
862+
Default value: `undef`
863+
837864
##### `stomp_port`
838865

839866
Data type: `Integer[1, 65535]`

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppet-rabbitmq",
3-
"version": "10.3.1-rc0",
3+
"version": "11.0.0",
44
"author": "voxpupuli",
55
"summary": "Installs, configures, and manages RabbitMQ.",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)