diff options
Diffstat (limited to 'defaults/main.yml')
-rw-r--r-- | defaults/main.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/defaults/main.yml b/defaults/main.yml index 7f7b33c..a8d37f4 100644 --- a/defaults/main.yml +++ b/defaults/main.yml | |||
@@ -11,4 +11,14 @@ rabbitmq_config: | |||
11 | type: direct | 11 | type: direct |
12 | routing_key: logstash | 12 | routing_key: logstash |
13 | tags: 'ha-mode=all,ha-sync-mode=automatic' | 13 | tags: 'ha-mode=all,ha-sync-mode=automatic' |
14 | rabbitmq_debian_repo: deb http://www.rabbitmq.com/debian/ testing main | ||
15 | rabbitmq_debian_repo_key: http://www.rabbitmq.com/rabbitmq-signing-key-public.asc | ||
14 | rabbitmq_master: [] #defines the inventory host that should be considered master...define here or in group_vars/group | 16 | rabbitmq_master: [] #defines the inventory host that should be considered master...define here or in group_vars/group |
17 | rabbitmq_users: #define admin user to create in order to login to WebUI | ||
18 | - name: rabbitmqadmin | ||
19 | password: rabbitmqadmin | ||
20 | vhost: / | ||
21 | configure_priv: '.*' | ||
22 | read_priv: '.*' | ||
23 | write_priv: '.*' | ||
24 | tags: 'administrator' #define comma separated list of tags to assign to user....management,policymaker,monitoring,administrator...required for management plugin. https://www.rabbitmq.com/management.html | ||