blob: 8b2e7ac7a4a9206322dd61a8cb6225e838a65bd8 (
plain)
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
|
spring:
profiles:
active: prod
server:
port: 8100
logging:
level:
ROOT: ERROR
org.springframework: ERROR
org.springframework.data: ERROR
org.onap.dcaegen2.services.prh: INFO
file: opt/log/application.log
app:
configs:
aaiHttpClientConfiguration:
aaiHost: "dns.aai.host"
aaiHostPortNumber: 8080
aaiProtocol: "https"
aaiUserName: "admin"
aaiUserPassword: "admin"
aaiIgnoreSSLCertificateErrors: true
#app:
# AAIHttpClientConfiguration:
# aaiHost: "localhost"
# aaiHostPortNumber: 8080
# aaiProtocol: "http"
# aaiUserName: "admin"
# aaiUserPassword: "admin"
# aaiIgnoreSSLCertificateErrors: true
# dmaap-consumer-configuration:
# dmmaphost-name: "localhost"
# dmmapport-number: 2222
# dmmaptopic-name: "temp"
# dmmapprotocol: "http"
# dmmapuserName: "admin"
# dmmapuserPassword: "admin"
# dmmapcontentType: "application/json"
# consumerId: "1"
# consumerGroup: "other"
# timeoutMS: 1000
# message-limit: 1000
# dmaap-producer-configuration:
# dmmaphostName: "localhost"
# dmmapportNumber: 2223
# dmmaptopicName: "temp"
# dmmapprotocol: "http"
# dmmapuserName: "admin"
# dmmapuserPassword: "admin"
# dmmapcontentType: "application/json"
|