rabbitmq_parameter - Adds or removes parameters to RabbitMQ

Author:Chris Hoffman

Synopsis

New in version 1.1.

Manage dynamic, cluster-wide parameters for RabbitMQ

Options

parameter required default choices comments
component yes
    Name of the component of which the parameter is being set
    name yes
      Name of the parameter being set
      node no rabbit
        erlang node name of the rabbit we wish to configure (added in Ansible 1.2)
        state no present
        • present
        • absent
        Specify if user is to be added or removed
        value no
          Value of the parameter, as a JSON term
          vhost no /
            vhost to apply access privileges.

            Examples


            # Set the federation parameter 'local_username' to a value of 'guest' (in quotes)
            - rabbitmq_parameter: component=federation
                                  name=local-username
                                  value='"guest"'
                                  state=present

            Table Of Contents

            Previous topic

            Messaging Modules

            Next topic

            rabbitmq_plugin - Adds or removes plugins to RabbitMQ