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
|
{
"configs": {
"dmaap": {
"dmaapConsumerConfiguration": {
"dmaapHostName": "localhost",
"dmaapPortNumber": 2222,
"dmaapTopicName": "/events/unauthenticated.VES_PNFREG_OUTPUT",
"dmaapProtocol": "http",
"dmaapUserName": "admin",
"dmaapUserPassword": "admin",
"dmaapContentType": "application/json",
"consumerId": "c12",
"consumerGroup": "OpenDcae-c12",
"timeoutMs": -1,
"messageLimit": 1
},
"dmaapProducerConfiguration": {
"dmaapHostName": "localhost",
"dmaapPortNumber": 2223,
"dmaapTopicName": "/events/unauthenticated.PNF_READY",
"dmaapProtocol": "http",
"dmaapUserName": "admin",
"dmaapUserPassword": "admin",
"dmaapContentType": "application/json"
}
},
"aai": {
"aaiClientConfiguration": {
"aaiHost": "localhost",
"aaiPort": 8080,
"aaiProtocol": "https",
"aaiUserName": "AAI",
"aaiUserPassword": "AAI",
"aaiIgnoreSslCertificateErrors": true,
"aaiBasePath": "/aai/v12",
"aaiPnfPath": "/network/pnfs/pnf",
"aaiHeaders": {
"X-FromAppId": "prh",
"X-TransactionId": "9999",
"Accept": "application/json",
"Real-Time": "true",
"Content-Type": "application/merge-patch+json"
}
}
},
"security": {
"keyFile" : "/opt/app/prh/local/org.onap.prh.keyfile",
"trustStore" : "change it",
"trustStorePassword" : "change it",
"keyStore" : "change it",
"keyStorePassword" : "change it",
"enableAaiCertAuth" : "false",
"enableDmaapCertAuth" : "false"
}
}
}
|