-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefinitions.json
More file actions
50 lines (50 loc) · 930 Bytes
/
Copy pathdefinitions.json
File metadata and controls
50 lines (50 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"users": [
{
"name": "backend",
"password_hash": "PYjvlpa7T0Y6/uvSoQdJ4IINyxGy/xm6Io5ShMKYzc4KJDfL",
"hashing_algorithm": "rabbit_password_hashing_sha256",
"tags": "administrator"
}
],
"vhosts": [
{
"name": "broker"
}
],
"permissions": [
{
"user": "backend",
"vhost": "broker",
"configure": ".*",
"write": ".*",
"read": ".*"
}
],
"exchanges": [
{
"name": "recommender",
"vhost": "broker",
"type": "topic",
"durable": true,
"auto_delete": false
}
],
"queues": [
{
"name": "user_activity",
"vhost": "broker",
"durable": true,
"auto_delete": false
}
],
"bindings": [
{
"source": "recommender",
"vhost": "broker",
"destination": "user_activity",
"destination_type": "queue",
"routing_key": "user.activity.*"
}
]
}