salt.states.rabbitmq_vhost

Manage RabbitMQ Virtual Hosts

范例:

virtual_host:
  rabbitmq_vhost.present:
    - user: rabbit_user
    - conf: .*
    - write: .*
    - read: .*
salt.states.rabbitmq_vhost.absent(name)

Ensure the RabbitMQ Virtual Host is absent

name
Name of the Virtual Host to remove
runas

User to run the command

2015.8.0 版后已移除.

salt.states.rabbitmq_vhost.present(name)

Ensure the RabbitMQ VHost exists.

name
VHost name
user

Initial user permission to set on the VHost, if present

2015.8.0 版后已移除.

owner

Initial owner permission to set on the VHost, if present

2015.8.0 版后已移除.

conf

Initial conf string to apply to the VHost and user. Defaults to .*

2015.8.0 版后已移除.

write

Initial write permissions to apply to the VHost and user. Defaults to .*

2015.8.0 版后已移除.

read

Initial read permissions to apply to the VHost and user. Defaults to .*

2015.8.0 版后已移除.

runas

Name of the user to run the command

2015.8.0 版后已移除.