You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

ACL file format for brokers.

File order - first match top to bottom.

group <group-name> = [user-list] [group-name-list]

action = [consume|
    publish|
    create|
    access|
    bind|
    unbind|
    delete|
    purge]

permission = [allow|allow-log|deny|deny-log]
property = [temporary|durable|owner]
object = [queue|exchange|routingkey]

permission <group-name> [action] [object=<object-name>] [property = <property-value>]

Example file:


group admin ted martin
group user-consume martin ted

acl carlt allow create queue=* temporary=true durable=false 
acl carlt allow create exchange=carl.* 
acl guest allow bind queue=* exchange=amq.topic routingkey=stocks.ibm.#  owner=self
acl user-consume allow create queue=tmp.* 
acl user-consume deny-nolog create queue=* durable=true
acl admin allow all
acl deny all

  • No labels