enable rabbitmq management and add admin permissions
- allow database creation for gnuviechadmin user in local deployments to allow test runs - set administrator tag for gnuviechadmin user in rabbitmq - add all permissions on gnuviechadmin vhost to gnuviechadmin user - enable rabbitmq management plugin
This commit is contained in:
parent
3270b43578
commit
68170f7576
3 changed files with 16 additions and 0 deletions
|
@ -7,6 +7,9 @@ gnuviechadmin-database:
|
|||
- user: postgres
|
||||
- password: {{ salt['pillar.get']('gnuviechadmin-database:owner:password') }}
|
||||
- login: True
|
||||
- createdb: {% if salt['pillar.get']('gnuviechadmin:deploymenttype', 'production') == 'local' %}True
|
||||
{%- else %}False
|
||||
{%- endif %}
|
||||
- require:
|
||||
- service: postgresql
|
||||
postgres_database.present:
|
||||
|
|
|
@ -5,6 +5,13 @@ gnuviechadmin-queues:
|
|||
rabbitmq_user.present:
|
||||
- name: {{ salt['pillar.get']('gnuviechadmin-queues:owner:user') }}
|
||||
- password: {{ salt['pillar.get']('gnuviechadmin-queues:owner:password') }}
|
||||
- tags:
|
||||
- administrator
|
||||
- perms:
|
||||
- {{ salt['pillar.get']('gnuviechadmin-queues:vhost') }}:
|
||||
- '.*'
|
||||
- '.*'
|
||||
- '.*'
|
||||
rabbitmq_vhost.present:
|
||||
- name: {{ salt['pillar.get']('gnuviechadmin-queues:vhost') }}
|
||||
- owner: {{ salt['pillar.get']('gnuviechadmin-queues:owner:user') }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue