Merge "Add RabbitFIPS parameter"

This commit is contained in:
Zuul 2022-01-29 01:33:26 +00:00 committed by Gerrit Code Review
commit ea973cde22
2 changed files with 10 additions and 0 deletions

View File

@ -77,6 +77,10 @@ parameters:
net_ticktime kernel variable.
default: 15
type: number
RabbitFIPS:
type: boolean
default: false
description: Configures RabbitMQ to run in FIPS mode
RabbitAdditionalErlArgs:
description:
Additional parameters passed to the Erlang subsystem. The string
@ -239,6 +243,7 @@ outputs:
# TODO(jaosorior): Remove this once we set a proper default in
# puppet-tripleo
tripleo::profile::base::rabbitmq::enable_internal_tls: {get_param: EnableInternalTLS}
tripleo::profile::base::rabbitmq::fips_mode: {get_param: RabbitFIPS}
rabbitmq::collect_statistics_interval: 30000
rabbitmq::admin_enable: false
rabbitmq::management_enable: true

View File

@ -0,0 +1,5 @@
---
features:
- |
RabbitMQ can be configured to run in FIPS mode via the new
configuration option RabbitFIPS. The default value is false.