Skip to content

Commit

Permalink
Add documentation for the new resources
Browse files Browse the repository at this point in the history
  • Loading branch information
ironpinguin authored and globin committed Dec 22, 2014
1 parent d998f94 commit a2f802c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,35 @@ rabbitmq_exchange { 'myexchange@myhost':
}
```

### rabbitmq\_queue

```puppet
rabbitmq_queue { 'myqueue@myhost':
user => 'dan',
password => 'bar',
durable => true,
auto_delete => false,
arguments => {
x-message-ttl => 123,
x-dead-letter-exchange => 'other'
},
ensure => present,
}
```

### rabbitmq\_binding

```puppet
rabbitmq_binding { 'myexchange@myqueue@myhost':
user => 'dan',
password => 'bar',
destination_type => 'queue',
routing_key => '#',
arguments => {},
ensure => present,
}
```

### rabbitmq\_user\_permissions

```puppet
Expand Down

0 comments on commit a2f802c

Please sign in to comment.