diff options
author | Larry Smith Jr <mrlesmithjr@gmail.com> | 2015-11-13 02:56:48 -0500 |
---|---|---|
committer | Larry Smith Jr <mrlesmithjr@gmail.com> | 2015-11-13 02:56:48 -0500 |
commit | 93a297c59940c7cfe88afe0f9110af5b4be521e3 (patch) | |
tree | 1d3f3904ecb83138f557f9a3ed40e72e032a3bfc /defaults | |
parent | 93f90e27f24275f9ccca908a2d77543dfa9bb379 (diff) | |
download | ansible-rabbitmq-93a297c59940c7cfe88afe0f9110af5b4be521e3.tar.gz ansible-rabbitmq-93a297c59940c7cfe88afe0f9110af5b4be521e3.tar.zst ansible-rabbitmq-93a297c59940c7cfe88afe0f9110af5b4be521e3.zip |
updated tasks, fixed broken HA configuration tasks
Diffstat (limited to 'defaults')
-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 | ||