(Quick Reference)

ssl

Purpose

Sets whether SSL should be used for a connection.

Examples

rabbitmq {
    connection = {
        connection(
            host: "rabbit.example.com",
            username: "foo",
            password: "bar",
            ssl: true
        )
    }
}

Description

If true, the connection will connect to the RabbitMQ server with SSL.

The SSL trust is all-trusting, so self-signed and potentially invalid certs will be accepted.