Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 840 Bytes

rabbitmq.md

File metadata and controls

26 lines (19 loc) · 840 Bytes

rabbitmq: RabbitMQ Trigger

Reads messages from RabbitMQ queues.

Attributes

Path Type Description
exchangeName string The exchange that contains the queue
queueName string If specified, the trigger reads messages from this queue
topics list of strings If specified, the trigger creates a queue with a unique name and subscribes it to these topics

Note: topics and queueName are mutually exclusive. The trigger can either create to an existing queue specified by queueName or create its own queue, subscribing it to topics

Example

triggers:
  myNatsTopic:
    kind: "rabbitmq"
    url: "amqp://user:[email protected]:5672"
    attributes:
      exchangeName: "myExchangeName"
      queueName: "myQueueNameName"