Skip to content

Commit

Permalink
Release 11.0.0
Browse files Browse the repository at this point in the history
* Add optional variables to support SSL CRL check configuration (voxpupuli#869)
* Remove support for CentOS 6 (voxpupuli#870)
  • Loading branch information
wyardley committed Jan 16, 2021
1 parent 736c8d9 commit fc70396
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
Each new release typically also includes the latest modulesync defaults.
These should not affect the functionality of the module.

## [v11.0.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v11.0.0) (2021-01-16)

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

**Breaking changes:**

- Remove support for CentOS 6 [\#870](https://github.com/voxpupuli/puppet-rabbitmq/pull/870) ([towo](https://github.com/towo))

**Implemented enhancements:**

- Add optional variables to support SSL CRL check configuration [\#869](https://github.com/voxpupuli/puppet-rabbitmq/pull/869) ([dimonzozo](https://github.com/dimonzozo))

## [v10.3.0](https://github.com/voxpupuli/puppet-rabbitmq/tree/v10.3.0) (2020-12-01)

[Full Changelog](https://github.com/voxpupuli/puppet-rabbitmq/compare/v10.2.0...v10.3.0)
Expand Down
27 changes: 27 additions & 0 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -834,6 +834,33 @@ Functionality can be tested with cipherscan or similar tool: https://github.com/

Default value: []

##### `ssl_crl_check`

Data type: `Enum['true','false','peer','best_effort']`

Perform CRL (Certificate Revocation List) verification
Please see the [Erlang SSL](https://erlang.org/doc/man/ssl.html#type-crl_check) module documentation for more information.

Default value: 'false'

##### `ssl_crl_cache_hash_dir`

Data type: `Optional[Stdlib::Absolutepath]`

This setting makes use of a directory where CRLs are stored in files named by the hash of the issuer name.
Please see the [Erlang SSL](https://erlang.org/doc/man/ssl.html#type-crl_cache_opts) module documentation for more information.

Default value: `undef`

##### `ssl_crl_cache_http_timeout`

Data type: `Optional[Integer]`

This setting enables use of internal CRLs cache and sets HTTP timeout interval on fetching CRLs from distributino URLs defined inside certificate.
Please see the [Erlang SSL](https://erlang.org/doc/man/ssl.html#type-crl_cache_opts) module documentation for more information.

Default value: `undef`

##### `stomp_port`

Data type: `Integer[1, 65535]`
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppet-rabbitmq",
"version": "10.3.1-rc0",
"version": "11.0.0",
"author": "voxpupuli",
"summary": "Installs, configures, and manages RabbitMQ.",
"license": "Apache-2.0",
Expand Down

0 comments on commit fc70396

Please sign in to comment.