-
Notifications
You must be signed in to change notification settings - Fork 0
/
rabbitmq-definitions.json
138 lines (138 loc) · 2.84 KB
/
rabbitmq-definitions.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"users": [
{
"name": "admin",
"password_hash": "DRpApGZuguOz9SXhQjX/CYWXuq+l0TB9i7QcHdYF2gXap/9I",
"hashing_algorithm": "rabbit_password_hashing_sha256",
"tags": "administrator"
}
],
"vhosts": [
{
"name": "/"
}
],
"permissions": [
{
"user": "admin",
"vhost": "/",
"configure": ".*",
"write": ".*",
"read": ".*"
}
],
"exchanges": [
{
"name": "ordering",
"vhost": "/",
"type": "topic",
"durable": false,
"auto_delete": false,
"internal": false,
"arguments": {}
}
],
"queues": [
{
"name": "order-requested",
"vhost": "/",
"durable": true,
"auto_delete": false,
"arguments": {}
},
{
"name": "order-prepare",
"vhost": "/",
"durable": true,
"auto_delete": false,
"arguments": {}
},
{
"name": "order-ready",
"vhost": "/",
"durable": true,
"auto_delete": false,
"arguments": {}
},
{
"name": "order-sent-to-customer",
"vhost": "/",
"durable": true,
"auto_delete": false,
"arguments": {}
},
{
"name": "order-logs",
"vhost": "/",
"durable": true,
"auto_delete": false,
"arguments": {}
}
],
"bindings": [
{
"source": "ordering",
"vhost": "/",
"destination": "order-requested",
"destination_type": "queue",
"routing_key": "order-request",
"arguments": {}
},
{
"source": "ordering",
"vhost": "/",
"destination": "order-prepare",
"destination_type": "queue",
"routing_key": "order-prepare",
"arguments": {}
},
{
"source": "ordering",
"vhost": "/",
"destination": "order-ready",
"destination_type": "queue",
"routing_key": "order-ready",
"arguments": {}
},
{
"source": "ordering",
"vhost": "/",
"destination": "order-sent-to-customer",
"destination_type": "queue",
"routing_key": "order-sent-to-customer",
"arguments": {}
},
{
"source": "ordering",
"vhost": "/",
"destination": "order-logs",
"destination_type": "queue",
"routing_key": "order-request",
"arguments": {}
},
{
"source": "ordering",
"vhost": "/",
"destination": "order-logs",
"destination_type": "queue",
"routing_key": "order-prepare",
"arguments": {}
},
{
"source": "ordering",
"vhost": "/",
"destination": "order-logs",
"destination_type": "queue",
"routing_key": "order-ready",
"arguments": {}
},
{
"source": "ordering",
"vhost": "/",
"destination": "order-logs",
"destination_type": "queue",
"routing_key": "order-sent-to-customer",
"arguments": {}
}
]
}