Hello,
I am using the rabbitmq puppet module from
https://forge.puppet.com/puppetlabs/rabbitmq/readmeI want to enable the ssl configuration for the management port.
So the declaration is like this :
ssl_key => '/etc/rabbitmq/ssl/key.pem',
ssl_cert => '/etc/rabbitmq/ssl/cert.pem',
ssl_ca => '/etc/rabbitmq/ssl/ca.pem',
But I want this module to deploy those file ca.pem cert.pem and key.pem
The code doesn't seems to be able to do this.
I though that modifying the code of puppet modules wasn't a good idea (for upgrade).
How do you deal with that kind of issues ?
Regards