-
Notifications
You must be signed in to change notification settings - Fork 3
/
vcap_services_example.json
58 lines (58 loc) · 1.54 KB
/
vcap_services_example.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
{
"rabbitmq-1.0": [
{
"name": "rabbit1",
"label": "rabbitmq",
"provider": "megacorp",
"tags": [
"amqp",
"rabbitmq"
],
"plan": "free",
"credentials": {
"uri": "amqp:\/\/guest:[email protected]\/labrat",
"http_api_uri": "http:\/\/guest:[email protected]:15672\/api",
"protocols": {
"amqp": {
"uri": "amqp:\/\/guest:[email protected]:5672",
"username": "guest",
"password": "guest",
"port": 5672,
"host": "127.0.0.1",
"vhost": "/"
},
"amqp+ssl": {
"uri": "amqps:\/\/guest:[email protected]:5671",
"username": "guest",
"password": "guest",
"port": 5671,
"host": "127.0.0.1",
"vhost": "/"
},
"mqtt": {
"uri": "mqtt:\/\/%2F%3Aguest:[email protected]:1883",
"username": "/:guest",
"password": "guest",
"port": 1883,
"host": "127.0.0.1"
},
"stomp": {
"uri": "stomp:\/\/guest:[email protected]:61613",
"username": "guest",
"password": "guest",
"port": 61613,
"host": "127.0.0.1",
"vhost": "/"
},
"management": {
"uri": "http:\/\/guest:[email protected]:15672\/api\/",
"username": "guest",
"password": "guest",
"port": 15672,
"host": "127.0.0.1"
}
}
}
}
]
}